Searched refs:exception (Results 176 - 200 of 372) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4177735.java67 catch (IllegalStateException exception) {
78 catch (InterruptedException exception) {
/openjdk7/jdk/test/javax/swing/JFileChooser/6520101/
H A Dbug6520101.java90 } catch (InterruptedException exception) {
91 exception.printStackTrace();
/openjdk7/jdk/test/javax/swing/plaf/metal/MetalBorders/
H A DTest6657026.java70 catch (Exception exception) {
71 throw new Error("unexpected exception", exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJDocComment.java8 * particular file as subject to the "Classpath" exception as provided
95 public JCommentPart addThrows( Class<? extends Throwable> exception ) {
96 return addThrows( owner.ref(exception) );
102 public JCommentPart addThrows( JClass exception ) {
103 JCommentPart p = atThrows.get(exception);
105 atThrows.put(exception,p=new JCommentPart());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/document/jaxws/
H A DJAXWSBinding.java8 * particular file as subject to the "Classpath" exception as provided
295 * @return Returns the exception.
298 return exception;
301 * @param exception The exception to set.
303 public void setException(Exception exception) { argument
304 this.exception = exception;
319 private Exception exception; field in class:JAXWSBinding
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXConnectorFactory.java8 * particular file as subject to the "Classpath" exception as provided
117 * exception, as follows:</p>
121 * <li>if the attempt to load the class produces an exception other
126 * exception, that is the <em>cause</em>.
217 * @exception NullPointerException if <code>serviceURL</code> is null.
219 * @exception IOException if the connector client or the
222 * @exception SecurityException if the connection cannot be made
254 * @exception NullPointerException if <code>serviceURL</code> is null.
256 * @exception IOException if the connector client or the
259 * @exception SecurityExceptio
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DCorbaClientRequestDispatcherImpl.java8 * particular file as subject to the "Classpath" exception as provided
401 + ": exception: " + e.toString());
408 //Bug 6382377: must not lose exception in PI
467 Exception exception = null;
473 exception = orb.getPIHandler().invokeClientPIEndingPoint(
474 ReplyMessage.NO_EXCEPTION, exception );
475 continueOrThrowSystemOrRemarshal(messageMediator, exception);
492 + ": received system exception: " + se);
502 exception = orb.getPIHandler().invokeClientPIEndingPoint(
505 // If PI did not change the exception, thro
687 continueOrThrowSystemOrRemarshal( CorbaMessageMediator messageMediator, Exception exception) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DSAX2XNI.java128 throw e.exception;
136 throw e.exception;
144 throw e.exception;
152 throw e.exception;
160 throw e.exception;
168 throw e.exception;
186 throw e.exception;
/openjdk7/jdk/src/share/classes/sun/rmi/server/
H A DActivatableRef.java8 * particular file as subject to the "Classpath" exception as provided
124 Exception exception = null;
147 exception = e;
152 exception = e;
157 exception = e;
163 exception = e;
172 * Call reached server; propagate remote exception.
177 * Call reached server; propagate remote exception
212 exception instanceof NoSuchObjectException &&
215 * If last exception wa
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/model/java/
H A DJavaMethod.java8 * particular file as subject to the "Classpath" exception as provided
110 public void addException(String exception) { argument
111 // verify that this exception does not already exist
112 if (!exceptions.contains(exception)) {
113 exceptions.add(exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceAP.java8 * particular file as subject to the "Classpath" exception as provided
137 public void error(SAXParseException exception) {
138 cer.error(exception);
142 public void fatalError(SAXParseException exception) {
143 cer.fatalError(exception);
147 public void warning(SAXParseException exception) {
148 cer.warning(exception);
152 public void info(SAXParseException exception) {
153 cer.info(exception);
159 public void info(SAXParseException exception) {
[all...]
H A DAnnotationProcessorContext.java8 * particular file as subject to the "Classpath" exception as provided
177 public void addExceptionBeanEntry(String exception, FaultInfo faultInfo, ModelBuilder builder) { argument
178 exceptionBeanMap.put(exception,faultInfo);
181 public FaultInfo getExceptionBeanName(String exception) { argument
182 return exceptionBeanMap.get(exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/
H A DDriver.java8 * particular file as subject to the "Classpath" exception as provided
167 public void error(SAXParseException exception) {
168 cer.error(exception);
171 public void fatalError(SAXParseException exception) {
172 cer.fatalError(exception);
175 public void warning(SAXParseException exception) {
176 cer.warning(exception);
179 public void info(SAXParseException exception) {
180 cer.info(exception);
256 public void info(SAXParseException exception) {
[all...]
/openjdk7/jdk/src/share/back/
H A Dinvoker.h8 * particular file as subject to the "Classpath" exception as provided
51 jvalue returnValue; /* if no exception, for all but INVOKE_CONSTRUCTOR */
52 jobject exception; /* NULL if no exception was thrown */ member in struct:InvokeRequest
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DPropertyElementHandler.java8 * particular file as subject to the "Classpath" exception as provided
134 catch (Exception exception) {
135 getOwner().handleException(exception);
151 catch (Exception exception) {
152 getOwner().handleException(exception);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DUnsupportedMediaException.java8 * particular file as subject to the "Classpath" exception as provided
28 import com.sun.xml.internal.ws.util.exception.JAXWSExceptionBase;
36 * {@link Codec} throws this exception when it doesn't understand request message's
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DMemoryClassLoader.java48 catch (ClassNotFoundException exception) {
49 throw new Error(exception);
106 catch (URISyntaxException exception) {
107 throw new Error(exception);
/openjdk7/jdk/test/java/beans/VetoableChangeSupport/
H A DTest6630275.java51 } catch (PropertyVetoException exception) {
55 return; // expected exception
57 throw new Error("exception should be thrown");
/openjdk7/jdk/test/java/nio/channels/AsynchronousServerSocketChannel/
H A DBasic.java98 final AtomicReference<Throwable> exception = new AtomicReference<Throwable>();
108 exception.set(exc);
121 while (exception.get() == null)
123 if (!(exception.get() instanceof AsynchronousCloseException))
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_event.h58 jlocation location, jobject exception);
/openjdk7/jdk/test/javax/swing/regtesthelpers/
H A DUtil.java215 final Exception[] exception = new Exception[1];
223 exception[0] = e;
228 if (exception[0] != null) {
229 throw exception[0];
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java8 * particular file as subject to the "Classpath" exception as provided
106 /** Add an exception to the exception list. */
107 public void addException (ExceptionEntry exception) argument
109 _exceptions.addElement (exception);
118 /** Add an exception name to the list of exception names. */
125 exception which this method throws. This vector corresponds to the
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DSchemaCompilerImpl.java8 * particular file as subject to the "Classpath" exception as provided
131 // since parsing DOM shouldn't cause a SAX exception
278 // before it's thrown, so when the exception is thrown
290 public void info(SAXParseException exception) { argument
292 errorListener.info(exception);
294 public void warning(SAXParseException exception) { argument
296 errorListener.warning(exception);
298 public void error(SAXParseException exception) { argument
301 errorListener.error(exception);
303 public void fatalError(SAXParseException exception) { argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DSOAPHandlerProcessor.java8 * particular file as subject to the "Classpath" exception as provided
68 * because during a response an exception from a handler
77 ProtocolException exception) {
81 exception,determineFaultCode(binding.getSOAPVersion()));
87 "exception while creating fault message in handler chain", e);
76 insertFaultMessage(C context, ProtocolException exception) argument
/openjdk7/jdk/test/java/beans/Introspector/4520754/
H A DTest4520754.java27 * @summary Tests for the removal of some of the exception based control flow
87 } catch (IntrospectionException exception) {
88 throw new Error("unexpected exception", exception);

Completed in 98 milliseconds

1234567891011>>