Skip to content

Commit

Permalink
Remove Generic Exception prefix on submission errors
Browse files Browse the repository at this point in the history
  • Loading branch information
lognaturel committed Nov 27, 2024
1 parent 9bcfd13 commit 240f110
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -215,8 +215,7 @@ public String uploadOneSubmission(Instance instance, String urlString) throws Fo
}

} catch (Exception e) {
throw new FormUploadException(FAIL + "Generic Exception: "
+ (e.getMessage() != null ? e.getMessage() : e.toString()));
throw new FormUploadException(e.getMessage() != null ? e.getMessage() : e.toString());
}

markSubmissionComplete(instance);
Expand Down

0 comments on commit 240f110

Please sign in to comment.