Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 5 of 5) sorted by relevance

/build/make/tools/product_config/src/com/android/build/config/
DOptions.java90 private static class ParseException extends Exception { class in Options.Parser
91 public ParseException(String message) { in ParseException() method in Options.Parser.ParseException
131 throw new ParseException("Unknown command line argument: " + arg); in parse()
136 } catch (ParseException ex) { in parse()
192 private String requireNextStringArg(String arg) throws ParseException { in requireNextStringArg()
195 throw new ParseException(arg + " requires a string argument."); in requireNextStringArg()
200 private int requireNextNumberArg(String arg) throws ParseException { in requireNextNumberArg()
203 throw new ParseException(arg + " requires a numeric argument."); in requireNextNumberArg()
208 throw new ParseException(arg + " requires a numeric argument. found: " + val); in requireNextNumberArg()
212 private void handleErrorCode(String arg, Errors.Level level) throws ParseException { in handleErrorCode()
DCsvParser.java41 public static class ParseException extends Exception { class in CsvParser
45 public ParseException(int line, int column, String message) { in ParseException() method in CsvParser.ParseException
111 throws ParseException, IOException { in parse()
159 throw new ParseException(line, column, in parse()
180 throw new ParseException(line, column, in parse()
DKatiImpl.java99 } catch (CsvParser.ParseException ex) { in loadProductConfig()
DDumpConfigParser.java70 throws CsvParser.ParseException, IOException { in parse()
79 private void parseImpl() throws CsvParser.ParseException, IOException { in parseImpl()
/build/make/tools/product_config/test/com/android/build/config/
DCsvParserTest.java132 } catch (CsvParser.ParseException ex) { in testEndInsideQuoted()
143 } catch (CsvParser.ParseException ex) { in testCharacterAfterQuotedField()