com.sun.jmx.snmp.IPAcl.ParseException
ParseException is described in the javadoc comments as:
This exception is thrown when parse errors are encountered. You can explicitly create objects of this exception type by calling the method generateParseException in the generated parser. You can modify this class to customize your error reporting mechanisms so long as you retain the public fields.
Where is this exception thrown?
Following, is a list of exception messages cross-referenced to the source code responsible for throwing them. Click on the method link to view the code and see how the exception is thrown.
- The message 'com.sun.jmx.snmp.IPAcl.ParseException: ' is thrown within the method:
com.sun.jmx.snmp.IPAcl.Parser.Access() - The message 'com.sun.jmx.snmp.IPAcl.ParseException: ' is thrown within the method:
com.sun.jmx.snmp.IPAcl.Parser.Host() - The message 'com.sun.jmx.snmp.IPAcl.ParseException: ' is thrown within the method:
com.sun.jmx.snmp.IPAcl.Parser.HostInform() - The message 'com.sun.jmx.snmp.IPAcl.ParseException: ' is thrown within the method:
com.sun.jmx.snmp.IPAcl.Parser.HostTrap()
How is this exception thrown?
The following sub-sections identify where this exception is thrown, and how (or why) the code is throwing the exception.
Any source code quoted in this section is subject to the Java Research License unless stated otherwise.
com.sun.jmx.snmp.IPAcl.Parser.Access()
public final JDMAccess Access() throws ParseException { JDMAccess jjtn000 = new JDMAccess(JJTACCESS); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); try { jj_consume_token(ACCESS); jj_consume_token(ASSIGN); switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case RO: jj_consume_token(RO); jjtn000.access = RO; break; case RW: jj_consume_token(RW); jjtn000.access = RW; break; default: jj_la1[5] = jj_gen; jj_consume_token(-1); throw new ParseException(); } jjtree.closeNodeScope(jjtn000, true); jjtc000 = false; { if (true) return jjtn000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } throw new Error('Missing return statement in function'); }
Source: "Java SE Downloads: Java SE 6 JDK Source Code", at: http://www.oracle.com/technetwork/java/javase/downloads/index.html
com.sun.jmx.snmp.IPAcl.Parser.Host()
public final void Host() throws ParseException { JDMHost jjtn000 = new JDMHost(JJTHOST); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); Token t; try { switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IDENTIFIER: HostName(); break; default: jj_la1[7] = jj_gen; if (jj_2_1(2147483647)) { NetMask(); } else if (jj_2_2(2147483647)) { NetMaskV6(); } else if (jj_2_3(2147483647)) { IpAddress(); } else { switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case V6_ADDRESS: IpV6Address(); break; case INTEGER_LITERAL: IpMask(); break; default: jj_la1[8] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } }
Source: "Java SE Downloads: Java SE 6 JDK Source Code", at: http://www.oracle.com/technetwork/java/javase/downloads/index.html
com.sun.jmx.snmp.IPAcl.Parser.HostInform()
public final void HostInform() throws ParseException { JDMHostInform jjtn000 = new JDMHostInform(JJTHOSTINFORM); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); Token t; try { switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IDENTIFIER: HostName(); break; case INTEGER_LITERAL: IpAddress(); break; case V6_ADDRESS: IpV6Address(); break; default: jj_la1[21] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } }
Source: "Java SE Downloads: Java SE 6 JDK Source Code", at: http://www.oracle.com/technetwork/java/javase/downloads/index.html
com.sun.jmx.snmp.IPAcl.Parser.HostTrap()
public final void HostTrap() throws ParseException { JDMHostTrap jjtn000 = new JDMHostTrap(JJTHOSTTRAP); boolean jjtc000 = true; jjtree.openNodeScope(jjtn000); Token t; try { switch((jj_ntk == -1) ? jj_ntk() : jj_ntk) { case IDENTIFIER: HostName(); break; case INTEGER_LITERAL: IpAddress(); break; case V6_ADDRESS: IpV6Address(); break; default: jj_la1[16] = jj_gen; jj_consume_token(-1); throw new ParseException(); } } catch (Throwable jjte000) { if (jjtc000) { jjtree.clearNodeScope(jjtn000); jjtc000 = false; } else { jjtree.popNode(); } if (jjte000 instanceof RuntimeException) { { if (true) throw (RuntimeException) jjte000; } } if (jjte000 instanceof ParseException) { { if (true) throw (ParseException) jjte000; } } { if (true) throw (Error) jjte000; } } finally { if (jjtc000) { jjtree.closeNodeScope(jjtn000, true); } } }
Source: "Java SE Downloads: Java SE 6 JDK Source Code", at: http://www.oracle.com/technetwork/java/javase/downloads/index.html
Comments
Post a Comment