Merge "Make ParseException less useless." am: 8e8ed1dfc2

am: 55fae4c14c

Change-Id: I045520c106529c266f5e06f29bb32cf078df7f8b
This commit is contained in:
Chalard Jean
2019-03-10 21:29:02 -07:00
committed by android-build-merger

View File

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