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

1234567891011>>

/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/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/jaxp/src/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...]
/openjdk7/jaxp/src/javax/xml/transform/
H A DTransformerFactoryConfigurationError.java8 * particular file as subject to the "Classpath" exception as provided
41 private Exception exception; field in class:TransformerFactoryConfigurationError
51 this.exception = null;
58 * @param msg The error message for the exception.
64 this.exception = null;
71 * @param e The exception to be encapsulated in a
78 this.exception = e;
85 * @param e The exception to be encapsulated in a
93 this.exception = e;
98 * 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>
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/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);
/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...]
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...]
/openjdk7/jdk/test/java/net/DatagramPacket/
H A DCheckBoundaries.java32 boolean exception = false;
38 exception = true;
40 if (!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/native/java/lang/fdlibm/src/
H A Ds_matherr.c9 * particular file as subject to the "Classpath" exception as provided
30 int matherr(struct exception *x)
33 struct exception *x;
/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/jaxws/src/share/jaxws_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
/openjdk7/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);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/
H A DCatalogException.java5 // CatalogException.java - Catalog exception
27 * Signal Catalog exception.
29 * <p>This exception is thrown if an error occurs loading a
39 /** A wrapper around another exception */
57 * The embedded exception if tunnelling, or null.
59 private Exception exception = null; field in class:CatalogException
65 * @param type The exception type
71 this.exception = null;
77 * @param type The exception type
82 this.exception
[all...]
/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/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/jaxws/src/share/jaxws_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
H A DErrorReceiverFilter.java8 * particular file as subject to the "Classpath" exception as provided
63 public void info(SAXParseException exception) { argument
64 if(core!=null) core.info(exception);
67 public void debug(SAXParseException exception) { argument
71 public void warning(SAXParseException exception) { argument
72 if(core!=null) core.warning(exception);
75 public void error(SAXParseException exception) { argument
77 if(core!=null) core.error(exception);
80 public void fatalError(SAXParseException exception) { argument
82 if(core!=null) core.fatalError(exception);
[all...]
/openjdk7/jdk/test/java/beans/Statement/
H A DTest6224433.java45 catch (ClassNotFoundException exception) {
46 throw new Error("expected class missing", exception);
48 catch (SecurityException exception) {
51 catch (Exception exception) {
52 throw new Error("unexpected condition", exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/apt/
H A DErrorReceiverImpl.java8 * particular file as subject to the "Classpath" exception as provided
54 public void error(SAXParseException exception) { argument
55 messager.printError(exception.getMessage());
56 messager.printError(getLocation(exception));
57 printDetail(exception);
60 public void fatalError(SAXParseException exception) { argument
61 messager.printError(exception.getMessage());
62 messager.printError(getLocation(exception));
63 printDetail(exception);
66 public void warning(SAXParseException exception) { argument
72 info(SAXParseException 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

Completed in 91 milliseconds

1234567891011>>