Searched defs:ParseException (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/net/
H A DParseException.java23 public class ParseException extends RuntimeException { class in inherits:RuntimeException
26 ParseException(String response) { method in class:ParseException
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java81 public static class ParseException extends IllegalArgumentException { class in class:TypedProperties
82 ParseException(StreamTokenizer state, String expected) { method in class:TypedProperties.ParseException
138 * @throws ParseException if the input data is malformed
141 static void parse(Reader r, Map<String, Object> map) throws ParseException, IOException {
161 throw new ParseException(st, "type name");
165 throw new ParseException(st, "valid type name");
173 throw new ParseException(st, "'('");
180 throw new ParseException(st, "property name");
184 throw new ParseException(st, "valid property name");
192 throw new ParseException(s
[all...]

Completed in 45 milliseconds