Merge "Make ParseException less useless."

This commit is contained in:
Treehugger Robot
2019-03-11 04:06:48 +00:00
committed by Gerrit Code Review

View File

@@ -24,6 +24,7 @@ public class ParseException extends RuntimeException {
public String response;
ParseException(String response) {
super(response);
this.response = response;
}
}