Searched defs:exception (Results 1 - 25 of 166) sorted by relevance

1234567

/openjdk7/jdk/src/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
37 ObjectReference exception; field in class:InvocationException
39 public InvocationException(ObjectReference exception) argument
42 this.exception = exception;
45 public ObjectReference exception() method in class:InvocationException
47 return exception;
/openjdk7/corba/src/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.
/openjdk7/jdk/src/share/classes/com/sun/jdi/event/
H A DExceptionEvent.java8 * particular file as subject to the "Classpath" exception as provided
31 * Notification of an exception in the target VM. When an exception
33 * {@link com.sun.jdi.request.ExceptionRequest exception request},
37 * If the exception is thrown from a non-native method,
38 * the exception event is generated at the location where the
39 * exception is thrown.
40 * If the exception is thrown from a native method, the exception event
41 * is generated at the first non-native location reached after the exception
57 public ObjectReference exception(); method in interface:ExceptionEvent
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DValidationException.java8 * particular file as subject to the "Classpath" exception as provided
29 * This exception indicates that an error has occurred while performing
33 * The <tt>ValidationEventHandler</tt> can cause this exception to be thrown
49 * @param message a description of the exception
59 * @param message a description of the exception
70 * @param exception the linked exception
72 public ValidationException(Throwable exception) { argument
73 this( null, null, exception );
80 * @param message a description of the exception
83 ValidationException(String message, Throwable exception) argument
95 ValidationException(String message, String errorCode, Throwable exception) argument
[all...]
H A DPropertyException.java8 * particular file as subject to the "Classpath" exception as provided
31 * This exception indicates that an error was encountered while getting or
46 * @param message a description of the exception
56 * @param message a description of the exception
67 * @param exception the linked exception
69 public PropertyException(Throwable exception) { argument
70 super(exception);
77 * @param message a description of the exception
78 * @param exception th
80 PropertyException(String message, Throwable exception) argument
92 PropertyException( String message, String errorCode, Throwable exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DWrappedSAXException.java66 * Wraps {@link SAXException} and make it an unchecked exception.
73 * It is a bug if this exception "leaks" to the application.
82 public final SAXException exception; field in class:WrappedSAXException
85 this.exception = e;
/openjdk7/jaxp/src/javax/xml/transform/
H A DErrorListener.java8 * particular file as subject to the "Classpath" exception as provided
48 * after a call to {@link #fatalError(TransformerException exception)}.</p>
66 * @param exception The warning information encapsulated in a
67 * transformer exception.
74 public abstract void warning(TransformerException exception) argument
85 * @param exception The error information encapsulated in a
86 * transformer exception.
93 public abstract void error(TransformerException exception) argument
102 * <p>The method should throw an exception if it is unable to
107 * @param exception Th
115 fatalError(TransformerException exception) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/sql/
H A DStatementEvent.java8 * particular file as subject to the "Classpath" exception as provided
45 private SQLException exception; field in class:StatementEvent
67 this.exception = null;
77 * @param exception The <code>SQLException </code>the driver is about to throw to
86 SQLException exception) {
91 this.exception = exception;
115 return this.exception;
84 StatementEvent(PooledConnection con, PreparedStatement statement, SQLException exception) argument
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPrinterIOException.java8 * particular file as subject to the "Classpath" exception as provided
34 * <p>As of release 1.4, this exception has been retrofitted to conform to
35 * the general purpose exception-chaining mechanism. The
55 * @param exception the specified <code>IOException</code>
57 public PrinterIOException(IOException exception) { argument
59 mException = exception;
66 * <p>This method predates the general-purpose exception chaining facility.
79 * Returns the the cause of this exception (the <code>IOException</code>
82 * @return the cause of this exception.
/openjdk7/jdk/src/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...]
/openjdk7/jdk/src/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
57 private Exception exception; field in class:PrivilegedActionException
63 * @param exception Th
65 PrivilegedActionException(Exception exception) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanException.java8 * particular file as subject to the "Classpath" exception as provided
31 * in the agent. It "wraps" the actual "user defined" exception thrown.
32 * This exception will be built by the MBeanServer when a call to an
33 * MBean method results in an unknown exception.
46 private java.lang.Exception exception ; field in class:MBeanException
52 * @param e the wrapped exception.
56 exception = e ;
63 * @param e the wrapped exception.
68 exception = e ;
75 * @return the wrapped exception
[all...]
H A DReflectionException.java8 * particular file as subject to the "Classpath" exception as provided
45 private java.lang.Exception exception ; field in class:ReflectionException
51 * @param e the wrapped exception.
55 exception = e ;
62 * @param e the wrapped exception.
67 exception = e ;
76 return exception ;
85 return exception;
/openjdk7/jaxp/src/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...]
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DAbstractTest.java30 public void exceptionThrown(Exception exception) { argument
31 throw new Error("unexpected exception", exception);
57 } catch (ArrayIndexOutOfBoundsException exception) {
58 // expected exception
70 } catch (NoSuchFieldException exception) {
71 throw new Error("unexpected exception", exception);
72 } catch (IllegalAccessException exception) {
73 throw new Error("unexpected exception", exceptio
[all...]
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DTest4625418.java392 catch (FileNotFoundException exception) {
393 throw new Error(this.encoding + " - file not found", exception);
395 catch (IllegalCharsetNameException exception) {
396 throw new Error(this.encoding + " - illegal charset name", exception);
398 catch (UnsupportedCharsetException exception) {
399 throw new Error(this.encoding + " - unsupported charset", exception);
401 catch (UnsupportedOperationException exception) {
402 throw new Error(this.encoding + " - unsupported encoder", exception);
406 public void exceptionThrown(Exception exception) { argument
407 throw new Error(this.encoding + " - internal", exception);
[all...]
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DInterruptDeadlock.java44 volatile Exception exception; field in class:InterruptDeadlock.Reader
67 this.exception = unexpected;
71 Exception exception() { method in class:InterruptDeadlock.Reader
72 return exception;
115 Exception e = r.exception();
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DThrowsTag.java8 * particular file as subject to the "Classpath" exception as provided
29 * Represents a @throws or @exception documentation tag.
30 * Parses and holds the exception name and exception comment.
31 * Note: @exception is a backwards compatible synonymy for @throws.
41 * Return the name of the exception
44 * @return name of the exception.
49 * Return the exception comment
52 * @return exception comment.
57 * Return a <code>ClassDoc</code> that represents the exception
68 ClassDoc exception(); method in interface:ThrowsTag
[all...]
/openjdk7/jdk/test/java/rmi/transport/handshakeFailure/
H A DHandshakeFailure.java83 if (connector.exception == null) {
87 System.err.println("remote call failed with exception:");
88 connector.exception.printStackTrace();
91 if (connector.exception instanceof MarshalException) {
95 } else if (connector.exception instanceof ConnectException ||
96 connector.exception instanceof ConnectIOException)
104 connector.exception);
115 Exception exception = null; field in class:HandshakeFailure.Connector
129 exception = e;
/openjdk7/jdk/test/java/rmi/transport/handshakeTimeout/
H A DHandshakeTimeout.java29 * the client should not hang forever; instead, it should throw an exception
30 * after a reasonable timeout interval. The exception should be a
81 if (connector.exception == null) {
85 System.err.println("remote call failed with exception:");
86 connector.exception.printStackTrace();
89 if (connector.exception instanceof MarshalException) {
93 } else if (connector.exception instanceof ConnectException ||
94 connector.exception instanceof ConnectIOException)
102 connector.exception);
113 Exception exception field in class:HandshakeTimeout.Connector
[all...]
/openjdk7/jdk/test/javax/management/monitor/
H A DMBeanServerForwarderInvocationHandler.java71 if (methodName.equals("getAttribute") && exception != null) {
72 throw exception;
78 public void setGetAttributeException(Exception exception) { argument
79 this.exception = exception;
82 private Exception exception; field in class:MBeanServerForwarderInvocationHandler
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/utils/
H A DConfigurationError.java37 private Exception exception; field in class:ConfigurationError
45 * exception.
49 this.exception = x;
56 /** Returns the exception associated to this error. */
58 return exception;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/utils/
H A DConfigurationError.java34 private Exception exception; field in class:ConfigurationError
42 * exception.
46 this.exception = x;
53 /** Returns the exception associated to this error. */
55 return exception;
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/
H A DXNIException.java24 * This exception is the base exception of all XNI exceptions. It
26 * 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...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java52 * @param exception Exception.
58 XMLParseException exception) throws XNIException;
71 * @param exception Exception.
77 XMLParseException exception) throws XNIException;
85 * throw an <code>XNIException</code> from this method. This exception
86 * can either be the same exception that is passed as a parameter to
87 * the method or a new XNI exception object. If the registered error
88 * handler fails to throw an exception, the continuing operation of
98 * @param exception Exception.
104 XMLParseException exception) throw
57 warning(String domain, String key, XMLParseException exception) argument
76 error(String domain, String key, XMLParseException exception) argument
103 fatalError(String domain, String key, XMLParseException exception) argument
[all...]

Completed in 102 milliseconds

1234567