Skip to content

Commit

Permalink
Fixed #80, where we no longer return stack traces for issues of the t…
Browse files Browse the repository at this point in the history
…ype: JavaObjectInaccessibleException, NonExistentJavaObjectException
  • Loading branch information
baubakg committed Mar 17, 2024
1 parent f62f5df commit edf5a2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,7 @@ When using the bridge service, we also include additional info:
"bridgeServiceException": "com.adobe.campaign.tests.bridge.service.exceptions.TargetJavaMethodCallException",
"originalException": "java.lang.IllegalArgumentException",
"originalMessage": "We do not allow numbers that are equal.",
"failureAtStep": "step1",
"stackTrace": [
"ClassA.methodA",
"ClassB.methodB"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ public class ErrorObject {

private String title;
private int code;
private String failureAtStep;
private String detail;
private String bridgeServiceException;
private String originalException;
private String originalMessage;
private String failureAtStep;

private List<String> stackTrace;

Expand Down

0 comments on commit edf5a2d

Please sign in to comment.