Searched refs:exception (Results 126 - 150 of 372) sorted by relevance

1234567891011>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
33 * {@link com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase}
36 * @see com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModelerException.java8 * particular file as subject to the "Classpath" exception as provided
27 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
31 * RuntimeModelerException represents an exception that occurred while
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerRtException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/streaming/
H A DXMLReaderException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
32 * <p> XMLReaderException represents an exception that occurred while reading an
H A DXMLStreamReaderException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
32 * <p> XMLStream ReaderException represents an exception that occurred while reading an
H A DXMLStreamWriterException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
32 * <p> XMLWriterException represents an exception that occurred while writing
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DUtilException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
32 * UtilException represents an exception that occurred while
/openjdk7/jdk/test/java/awt/appletviewer/IOExceptionIfEncodedURLTest/
H A DIOExceptionIfEncodedURLTest.sh8 # particular file as subject to the "Classpath" exception as provided
65 cat err | grep "I/O exception while reading"
66 exception=$?
67 if [ $exception = "0" ];
72 exception=$?
73 if [ $exception = "0" ];
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A DBeanValidator.java163 catch (IllegalAccessException exception) {
164 log(exception);
175 catch (IllegalAccessException exception) {
176 log(exception);
178 catch (InvocationTargetException exception) {
179 log(exception.getCause());
210 } catch (IllegalStateException exception) {
212 throw new IllegalStateException("one collection does not contain some elements from another one", exception);
239 catch (NoSuchMethodException exception) {
240 log(exception);
[all...]
/openjdk7/corba/src/share/classes/org/omg/CosNaming/
H A Dnameservice.idl8 * particular file as subject to the "Classpath" exception as provided
158 exception NotFound
169 exception CannotProceed
178 exception InvalidName
185 exception AlreadyBound
191 exception NotEmpty
203 * @exception org.omg.CosNaming.NamingContextPackage.NotFound Indicates
206 * @exception org.omg.CosNaming.NamingContextPackage.CannotProceed
211 * @exception org.omg.CosNaming.NamingContextPackage.InvalidName
214 * @exception or
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DUnsolicitedResponseImpl.java8 * particular file as subject to the "Classpath" exception as provided
41 private NamingException exception; field in class:UnsolicitedResponseImpl
56 exception = LdapCtx.mapErrorCode(status, msg);
58 // exception.setResolvedName(new CompositeName().add(matchedDN));
99 * Retrieves the exception as constructed using information
101 * @return A possibly null exception as constructed using information
106 return exception;
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DInvocationEvent.java8 * particular file as subject to the "Classpath" exception as provided
81 * immediately after the Runnable.run() method has returned or thrown an exception.
98 * exception instance variable. If false, Throwables are propagated up
108 private Exception exception = null; field in class:InvocationEvent
158 * immediately after <code>run</code> has returned or thrown an exception.
174 * thrown an exception
196 * <code>run</code> has returned or thrown an exception.
211 * thrown an exception
233 * notifier (if any) when <code>run()</code> has returned or thrown an exception.
245 exception
[all...]
/openjdk7/jdk/test/java/beans/Statement/
H A DTest4530962.java34 * Ambiguous method signature should throw an exception.
41 throw new Error("exception expected");
43 catch (NoSuchMethodException exception) {
44 // should throw an exception
46 catch (Exception exception) {
47 throw new Error("unexpected exception", exception);
/openjdk7/jdk/src/share/instrument/
H A DJavaExceptions.h8 * particular file as subject to the "Classpath" exception as provided
88 jthrowable exception);
93 jthrowable exception);
95 /* true if the env contains a thrown exception */
105 * This call assumes an outstanding exception, but does not
119 jthrowable exception);
121 /* returns current throwable. always clears the JNIEnv exception */
130 /* always clears the JNIEnv throwable. returns true if an exception was pending on entry. */
135 * does the very best it can to make sure an exception ends up installed; uses fallback if necessary
136 * always sets the JNIEnv exception
[all...]
/openjdk7/jdk/test/javax/management/mxbean/
H A DAmbiguousConstructorTest.java49 boolean exception = false;
53 // TODO - check for the specific exception we should get.
54 // Currently exception happens in preRegister so we have
59 System.out.println("...OK, got expected exception:");
61 exception = true;
63 if (!exception) {
64 System.out.println("TEST FAILED: expected exception, got none");
65 throw new Exception("Did not get expected exception");
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLParseException.java27 * A parsing exception. This exception is different from the standard
28 * XNI exception in that it stores the location in the document (or
29 * its entities) where the exception occurred.
69 /** Constructs a parse exception. */
83 /** Constructs a parse exception. */
85 String message, Exception exception) {
86 super(message, exception);
169 Exception exception = getException();
170 if (exception !
84 XMLParseException(XMLLocator locator, String message, Exception exception) argument
[all...]
/openjdk7/jdk/test/java/util/Hashtable/
H A DSerializationDeadlock.java91 throw new IOException("Test ERROR: Unexpected exception caught", e);
127 private static synchronized void addException(final Exception exception) { argument
128 exceptions.add(exception);
142 for (Exception exception : exceptions) {
144 pw.println(exception);
145 for (StackTraceElement element : exception.getStackTrace()) {
/openjdk7/jdk/test/java/util/Vector/
H A DSerializationDeadlock.java93 throw new IOException("Test ERROR: Unexpected exception caught", e);
128 private static synchronized void addException(final Exception exception) { argument
129 exceptions.add(exception);
143 for (Exception exception : exceptions) {
145 pw.println(exception);
146 for (StackTraceElement element : exception.getStackTrace()) {
/openjdk7/corba/src/share/classes/org/omg/PortableServer/
H A Dpoa.idl8 * particular file as subject to the "Classpath" exception as provided
33 * The exception to this is the id attribute, which is added in ptc/00-08-06,
68 * forward_reference member of the exception.
70 exception ForwardRequest { Object forward_reference; };
249 * an OBJECT_NOT_EXIST exception is returned to the
261 * locate a servant or raise an exception.
294 exception AdapterInactive{ };
304 * @exception AdapterInactive is raised if the operation is
317 * @exception AdapterInactive is raised if the operation is
330 * @exception AdapterInactiv
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DCoordinator.java8 * particular file as subject to the "Classpath" exception as provided
176 public final void error(SAXParseException exception) throws SAXException { argument
177 propagateEvent( ValidationEvent.ERROR, exception );
180 public final void warning(SAXParseException exception) throws SAXException { argument
181 propagateEvent( ValidationEvent.WARNING, exception );
184 public final void fatalError(SAXParseException exception) throws SAXException { argument
185 propagateEvent( ValidationEvent.FATAL_ERROR, exception );
205 // bail-out of the parse with a SAX exception, but convert it into
/openjdk7/jdk/test/java/beans/Introspector/
H A DBeanUtils.java51 } catch (IntrospectionException exception) {
52 throw new Error("unexpected exception", exception);
65 } catch (IntrospectionException exception) {
66 throw new Error("unexpected exception", exception);
79 } catch (IntrospectionException exception) {
80 throw new Error("unexpected exception", exception);
/openjdk7/jdk/test/java/beans/XMLEncoder/6329581/
H A DTest6329581.java63 catch (ClassNotFoundException exception) {
73 public void exceptionThrown(Exception exception) { argument
74 throw new Error("unexpected exception", exception);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/interceptors/
H A DPINoOpHandlerImpl.java8 * particular file as subject to the "Classpath" exception as provided
108 int replyStatus, Exception exception )
114 int replyStatus, Exception exception ) {
149 public void setServerPIInfo( Exception exception ) {
156 public void setServerPIExceptionInfo( Any exception )
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/protocol/
H A DPIHandler.java8 * particular file as subject to the "Classpath" exception as provided
122 * @exception RemarhsalException - Thrown when this request needs to
134 * @param exception The exception before ending interception points have
135 * been invoked, or null if no exception at the moment.
136 * @return The exception to be thrown, after having gone through
137 * all ending points, or null if there is no exception to be
138 * thrown. Note that this exception can be either the same or
139 * different from the exception set using setClientPIException.
140 * There are four possible return types: null (no exception),
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dfollow.set8 * particular file as subject to the "Classpath" exception as provided
42 <definition> EOF, typedef, struct, union, enum, const, exception, interface, module, }
60 <export> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }
62 <state_def> typedef, struct, union, enum, const, exception, readonly, attribute, oneway, float, double, long, short, unsigned, char, boolean, octet, any, string, id, ::, void, state, }

Completed in 4217 milliseconds

1234567891011>>