Searched refs:exception (Results 1 - 25 of 523) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/jdi/
H A DInvocationException.java8 * particular file as subject to the "Classpath" exception as provided
29 * Thrown to indicate an exception occurred in an invoked method within
39 ObjectReference exception; field in class:InvocationException
41 public InvocationException(ObjectReference exception) { argument
43 this.exception = exception;
46 public ObjectReference exception() { method in class:InvocationException
47 return exception;
/openjdk10/langtools/test/tools/javac/doctree/
H A DThrowableTest.java40 void exception() throws Exception { } method in class:ThrowableTest
H A DExceptionTest.java38 * @exception Exception
40 void exception() throws Exception { } method in class:ExceptionTest
55 * @exception Exception text
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DPrivilegedActionException.java8 * particular file as subject to the "Classpath" exception as provided
29 * This exception is thrown by
33 * that the action being performed threw a checked exception. The exception
37 * for an exception thrown by a privileged action.
39 * <p>As of release 1.4, this exception has been retrofitted to conform to
40 * the general purpose exception-chaining mechanism. The "exception thrown
58 private Exception exception; field in class:PrivilegedActionException
64 * @param exception Th
66 PrivilegedActionException(Exception exception) argument
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/libs/javax/xml/validation/ptests/
H A DMyErrorHandler.java29 public void error(SAXParseException exception) throws SAXParseException { argument
30 throw exception;
33 public void warning(SAXParseException exception) throws SAXParseException { argument
34 throw exception;
37 public void fatalError(SAXParseException exception) throws SAXParseException { argument
38 throw exception;
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/parsers/
H A DFactoryConfigurationError.java8 * particular file as subject to the "Classpath" exception as provided
44 private Exception exception; field in class:FactoryConfigurationError
53 this.exception = null;
60 * @param msg The error message for the exception.
65 this.exception = null;
73 * @param e The exception to be encapsulated in a
79 this.exception = e;
86 * @param e The exception to be encapsulated in a
93 this.exception = e;
99 * message for the exception an
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/transform/
H A DTransformerFactoryConfigurationError.java8 * particular file as subject to the "Classpath" exception as provided
43 private Exception exception; field in class:TransformerFactoryConfigurationError
53 this.exception = null;
60 * @param msg The error message for the exception.
66 this.exception = null;
73 * @param e The exception to be encapsulated in a
80 this.exception = e;
87 * @param e The exception to be encapsulated in a
95 this.exception = e;
100 * message for the exception an
[all...]
H A DErrorListener.java8 * particular file as subject to the "Classpath" exception as provided
48 * after a call to {@link #fatalError(TransformerException exception)}.</p>
68 * @param exception The warning information encapsulated in a
69 * transformer exception.
76 public abstract void warning(TransformerException exception) argument
87 * @param exception The error information encapsulated in a
88 * transformer exception.
95 public abstract void error(TransformerException exception) argument
104 * <p>The method should throw an exception if it is unable to
109 * @param exception Th
117 fatalError(TransformerException exception) argument
[all...]
/openjdk10/jdk/test/java/beans/Beans/
H A DTest4343723.java27 * @summary Tests nested exception in Beans.instantiate()
38 // throw an exception as a result of Class.newInstance()
41 catch (ClassNotFoundException exception) {
42 if (null == exception.getCause())
43 throw new Error("unexpected exception", exception);
45 catch (IOException exception) {
46 throw new Error("unexpected exception", exception);
/openjdk10/jaxp/src/java.xml/share/classes/org/xml/sax/
H A DErrorHandler.java8 * particular file as subject to the "Classpath" exception as provided
58 * in preference to throwing an exception: it is up to the application
59 * to decide whether to throw an exception for different types of
63 * may throw an exception after reporting any fatalError.
91 * @param exception The warning information encapsulated in a
92 * SAX parse exception.
93 * @exception org.xml.sax.SAXException Any SAX exception, possibly
94 * wrapping another exception.
97 public abstract void warning (SAXParseException exception) argument
126 error(SAXParseException exception) argument
158 fatalError(SAXParseException exception) argument
[all...]
H A DSAXException.java8 * particular file as subject to the "Classpath" exception as provided
26 // SAX exception class.
46 * functionality. SAX handlers may throw this exception or
47 * any exception subclassed from it.</p>
51 * or an exception derived from a SAXException.</p>
71 this.exception = null;
82 this.exception = null;
87 * Create a new SAXException wrapping an existing exception.
89 * <p>The existing exception will be embedded in the new
93 * @param e The exception t
182 private Exception exception; field in class:SAXException
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/sax/
H A DSAXExceptionExt.java29 private Exception exception; field in class:SAXExceptionExt
33 exception = e;
37 return exception;
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/xml/sax/
H A DErrorHandler.java8 * particular file as subject to the "Classpath" exception as provided
58 * in preference to throwing an exception: it is up to the application
59 * to decide whether to throw an exception for different types of
63 * may throw an exception after reporting any fatalError.
91 * @param exception The warning information encapsulated in a
92 * SAX parse exception.
93 * @exception org.xml.sax.SAXException Any SAX exception, possibly
94 * wrapping another exception.
97 public abstract void warning (SAXParseException exception) argument
126 error(SAXParseException exception) argument
158 fatalError(SAXParseException exception) argument
[all...]
H A DSAXException.java8 * particular file as subject to the "Classpath" exception as provided
26 // SAX exception class.
46 * functionality. SAX handlers may throw this exception or
47 * any exception subclassed from it.</p>
51 * or an exception derived from a SAXException.</p>
71 this.exception = null;
82 this.exception = null;
87 * Create a new SAXException wrapping an existing exception.
89 * <p>The existing exception will be embedded in the new
93 * @param e The exception t
182 private Exception exception; field in class:SAXException
[all...]
/openjdk10/jdk/test/java/net/DatagramPacket/
H A DCheckBoundaries.java32 boolean exception = false;
38 exception = true;
40 if (!exception)
/openjdk10/hotspot/test/runtime/Final/
H A DTestPutMain.java39 boolean exception = false;
43 exception = true;
46 Asserts.assertTrue(exception, "FAILED: Expected IllegalAccessError for illegal update to final instance field was not thrown.");
48 exception = false;
52 exception = true;
55 Asserts.assertTrue(exception, "FAILED: Expected IllegalAccessError for illegal update to final static field was not thrown.");
/openjdk10/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DEnvironment.java8 * particular file as subject to the "Classpath" exception as provided
29 * A container (holder) for an exception that is used in <code>Request</code>
40 * Retrieves the exception in this <code>Environment</code> object.
42 * @return the exception in this <code>Environment</code> object
45 public abstract java.lang.Exception exception(); method in class:Environment
48 * Inserts the given exception into this <code>Environment</code> object.
50 * @param except the exception to be set
53 public abstract void exception(java.lang.Exception except); method in class:Environment
56 * Clears this <code>Environment</code> object of its exception.
/openjdk10/jdk/src/java.base/share/native/libfdlibm/
H A Ds_matherr.c8 * particular file as subject to the "Classpath" exception as provided
29 int matherr(struct exception *x)
32 struct exception *x;
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/api/
H A DErrorListener.java8 * particular file as subject to the "Classpath" exception as provided
48 void error(SAXParseException exception); argument
49 void fatalError(SAXParseException exception); argument
50 void warning(SAXParseException exception); argument
55 void info(SAXParseException exception); argument
/openjdk10/jdk/src/java.base/share/classes/java/lang/
H A DExceptionInInitializerError.java8 * particular file as subject to the "Classpath" exception as provided
29 * Signals that an unexpected exception has occurred in a static initializer.
31 * exception occurred during evaluation of a static initializer or the
34 * <p>As of release 1.4, this exception has been retrofitted to conform to
35 * the general purpose exception-chaining mechanism. The "saved throwable
51 * This field holds the exception if the
58 private Throwable exception; field in class:ExceptionInInitializerError
64 * A detail message is a String that describes this particular exception.
76 * @param thrown The exception thrown
80 this.exception
[all...]
/openjdk10/jdk/test/java/beans/XMLEncoder/
H A Djava_lang_reflect_Field.java44 } catch (NoSuchFieldException exception) {
45 throw new Error("unexpected exception", exception);
52 } catch (NoSuchFieldException exception) {
53 throw new Error("unexpected exception", exception);
H A Djava_lang_reflect_Method.java41 } catch (NoSuchMethodException exception) {
42 throw new Error("unexpected exception", exception);
49 } catch (NoSuchMethodException exception) {
50 throw new Error("unexpected exception", exception);
H A Djava_net_URI.java42 } catch (URISyntaxException exception) {
43 throw new Error("unexpected exception", exception);
50 } catch (URISyntaxException exception) {
51 throw new Error("unexpected exception", exception);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/xni/
H A DXNIException.java25 * This exception is the base exception of all XNI exceptions. It
27 * exception object.
47 /** The wrapped exception. */
55 * Constructs an XNI exception with a message.
57 * @param message The exception message.
64 * Constructs an XNI exception with a wrapped exception.
66 * @param exception The wrapped exception
68 XNIException(Exception exception) argument
79 XNIException(String message, Exception exception) argument
[all...]
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWsimportListener.java8 * particular file as subject to the "Classpath" exception as provided
60 public void error(SAXParseException exception) { argument
64 public void fatalError(SAXParseException exception) { argument
68 public void warning(SAXParseException exception) { argument
72 public void info(SAXParseException exception) { argument
76 public void debug(SAXParseException exception){} argument

Completed in 236 milliseconds

1234567891011>>