Lines Matching refs:ParsingException

85      * @exception ParsingException if the policy configuration
93 throws ParsingException, IOException
145 throw new ParsingException(st.lineno(), "expected grant " +
156 throws ParsingException, IOException
171 ParsingException(st.lineno(), "expected permission entry");
184 throws ParsingException, IOException
208 throw new ParsingException(st.lineno(),
226 throw new ParsingException(st.lineno(), "Inconsistent policy");
238 throw new ParsingException(st.lineno(),
265 throw new ParsingException(st.lineno(),
283 throws ParsingException
298 throw new ParsingException("Cannot call the constructor of " +
306 throws ParsingException, IOException
363 throws ParsingException, IOException
382 throw new ParsingException(lineno, "a non-negative number",
389 throws ParsingException, IOException
395 throw new ParsingException(st.lineno(), expect,
398 throw new ParsingException("expected "+expect+", read end of file");
408 throw new ParsingException(st.lineno(), expect, st.sval);
419 throw new ParsingException(st.lineno(), expect, st.sval);
425 throw new ParsingException(st.lineno(), expect, ",");
431 throw new ParsingException(st.lineno(), expect, "{");
437 throw new ParsingException(st.lineno(), expect, "}");
443 throw new ParsingException(st.lineno(), expect, ";");
449 throw new ParsingException(st.lineno(), expect, "*");
452 throw new ParsingException(st.lineno(), expect,
686 static final class ParsingException extends GeneralSecurityException {
691 * Constructs a ParsingException with the specified
695 ParsingException(String msg) {
699 ParsingException(int line, String msg) {
703 ParsingException(int line, String expect, String actual) {