We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b26b8 commit e5485adCopy full SHA for e5485ad
src/main/java/org/dataloader/Try.java
@@ -167,7 +167,7 @@ public V get() {
167
*/
168
public Throwable getThrowable() {
169
if (isSuccess()) {
170
- throw new UnsupportedOperationException("You have called Try.getThrowable() with a failed Try", throwable);
+ throw new UnsupportedOperationException("You have called Try.getThrowable() with a successful Try");
171
}
172
return throwable;
173
0 commit comments