We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59b26b8 + e5485ad commit 08559baCopy full SHA for 08559ba
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