Lines Matching refs:ParsingException

86      * @exception ParsingException if the policy configuration
94 throws ParsingException, IOException
146 throw new ParsingException(st.lineno(), "expected grant " +
158 throws ParsingException, IOException
173 ParsingException(st.lineno(), "expected permission entry");
186 throws ParsingException, IOException
210 throw new ParsingException(st.lineno(),
228 throw new ParsingException(st.lineno(), "Inconsistent policy");
240 throw new ParsingException(st.lineno(),
267 throw new ParsingException(st.lineno(),
285 throws ParsingException
300 throw new ParsingException("Cannot call the constructor of " +
308 throws ParsingException, IOException
365 throws ParsingException, IOException
384 throw new ParsingException(lineno, "a non-negative number",
391 throws ParsingException, IOException
397 throw new ParsingException(st.lineno(), expect,
400 throw new ParsingException("expected "+expect+", read end of file");
410 throw new ParsingException(st.lineno(), expect, st.sval);
421 throw new ParsingException(st.lineno(), expect, st.sval);
427 throw new ParsingException(st.lineno(), expect, ",");
433 throw new ParsingException(st.lineno(), expect, "{");
439 throw new ParsingException(st.lineno(), expect, "}");
445 throw new ParsingException(st.lineno(), expect, ";");
451 throw new ParsingException(st.lineno(), expect, "*");
454 throw new ParsingException(st.lineno(), expect,
685 static final class ParsingException extends GeneralSecurityException {
690 * Constructs a ParsingException with the specified
694 ParsingException(String msg) {
698 ParsingException(int line, String msg) {
702 ParsingException(int line, String expect, String actual) {