Merge "Make ParseException less useless."

am: 8e8ed1dfc2

Change-Id: If582e61ca92e5414edea351934053fa0ab6b04bf
This commit is contained in:
Chalard Jean
2019-03-10 21:19:42 -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;
}
}