We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
getExceptions()
1 parent 1b5a5d9 commit ad30876Copy full SHA for ad30876
1 file changed
bugsnag/src/main/java/com/bugsnag/BugsnagEvent.java
@@ -73,12 +73,16 @@ protected String getPayloadVersion() {
73
return PAYLOAD_VERSION;
74
}
75
76
+ @Expose
77
+ protected List<BugsnagError> getExceptions() {
78
+ return getErrors();
79
+ }
80
+
81
/**
82
* Get the exceptions for the report.
83
*
84
* @return the exceptions that make up the error.
85
*/
- @Expose
86
protected List<BugsnagError> getErrors() {
87
List<BugsnagError> errors = new ArrayList<BugsnagError>();
88
errors.add(error);
0 commit comments