Searched refs:exc (Results 26 - 50 of 299) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DThreadGroupReferenceImpl.java65 } catch (JDWPException exc) {
66 throw exc.toJDIException();
81 } catch (JDWPException exc) {
82 throw exc.toJDIException();
127 } catch (JDWPException exc) {
128 throw exc.toJDIException();
H A DClassObjectReferenceImpl.java47 } catch (JDWPException exc) {
48 throw exc.toJDIException();
H A DReferenceTypeImpl.java181 } catch (JDWPException exc) {
182 throw exc.toJDIException();
198 } catch (JDWPException exc) {
199 throw exc.toJDIException();
216 } catch (JDWPException exc) {
217 throw exc.toJDIException();
233 } catch (JDWPException exc) {
234 throw exc.toJDIException();
330 } catch (JDWPException exc) {
331 throw exc
[all...]
H A DObjectReferenceImpl.java156 } catch (JDWPException exc) {
157 throw exc.toJDIException();
213 } catch (JDWPException exc) {
214 throw exc.toJDIException();
259 } catch (JDWPException exc) {
260 throw exc.toJDIException();
421 } catch (JDWPException exc) {
422 if (exc.errorCode() == JDWP.Error.INVALID_THREAD) {
425 throw exc.toJDIException();
449 } catch (JDWPException exc) {
[all...]
/openjdk9/jdk/test/com/sun/jdi/
H A DExpiredRequestDeletionTest.java84 } catch (Throwable exc) {
85 throwable = exc;
86 failure("Deleting BreakpointRequest threw - " + exc);
99 } catch (Throwable exc) {
100 throwable = exc;
101 failure("Deleting StepRequest threw - " + exc);
H A DArrayRangeTest.java104 } catch (Throwable exc) {
106 ".getValue(" + index + ") - unexpected: " + exc);
115 } catch (IndexOutOfBoundsException exc) {
117 ".getValue(" + index + ") - got expected: " + exc);
118 } catch (Throwable exc) {
120 ".getValue(" + index + ") - unexpected: " + exc);
142 } catch (Throwable exc) {
144 " - unexpected: " + exc);
168 } catch (Throwable exc) {
170 index + ", " + length + ") - unexpected: " + exc);
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/nio/ch/
H A DSimpleAsynchronousFileChannelImpl.java187 Throwable exc = new ClosedChannelException();
189 return CompletedFuture.withFailure(exc);
190 Invoker.invokeIndirectly(handler, attachment, null, exc, executor);
198 Throwable exc = null;
215 exc = x;
223 result.setResult(fli, exc);
225 Invoker.invokeUnchecked(handler, attachment, fli, exc);
302 Throwable exc = (isOpen()) ? null : new ClosedChannelException();
304 return CompletedFuture.withResult(0, exc);
305 Invoker.invokeIndirectly(handler, attachment, 0, exc, executo
[all...]
H A DInvoker.java124 Throwable exc)
126 if (exc == null) {
129 handler.failed(exc, attachment);
155 Throwable exc)
158 Invoker.invokeUnchecked(handler, attachment, result, exc);
170 Throwable exc)
186 invokeDirect(thisGroupAndInvokeCount, handler, attachment, result, exc);
189 invokeIndirectly(channel, handler, attachment, result, exc);
195 handler, attachment, result, exc);
210 final Throwable exc)
121 invokeUnchecked(CompletionHandler<V,? super A> handler, A attachment, V value, Throwable exc) argument
151 invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
166 invoke(AsynchronousChannel channel, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
206 invokeIndirectly(AsynchronousChannel channel, final CompletionHandler<V,? super A> handler, final A attachment, final V result, final Throwable exc) argument
230 invokeIndirectly(final CompletionHandler<V,? super A> handler, final A attachment, final V value, final Throwable exc, Executor executor) argument
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orbutil/concurrent/
H A DSyncUtil.java44 } catch (InterruptedException exc) {
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DExceptionList.java70 * @param exc the <code>TypeCode</code> object to be added
73 public abstract void add(TypeCode exc); argument
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/org/glassfish/gmbal/util/
H A DGenericConstructor.java84 } catch (Exception exc) {
87 "Failure in getConstructor", exc ) ;
115 } catch (Exception exc) {
120 log(Level.WARNING, "Error invoking constructor", exc );
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DJdiEventHandler.java70 try {wait();} catch (InterruptedException exc) {}
89 } catch (InterruptedException exc) {
133 } catch (InterruptedException exc) {
135 } catch (InternalError exc) {
/openjdk9/corba/src/java.corba/share/classes/javax/rmi/
H A DPortableRemoteObject.java199 INITIALIZE exc = new INITIALIZE( "Cannot instantiate " + className);
200 exc.initCause( ex ) ;
201 throw exc ;
203 INITIALIZE exc = new INITIALIZE( "Error while instantiating" + className);
204 exc.initCause( ex ) ;
205 throw exc ;
223 ClassNotFoundException exc = new ClassNotFoundException( msg ) ;
224 throw exc ;
270 } catch (Exception exc) {
273 " not found: " + exc) ;
[all...]
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DJNDIStateFactoryImpl.java73 } catch (Exception exc) {
122 } catch (Exception exc) {
133 } catch (Exception exc) {
134 if (!(exc instanceof java.rmi.RemoteException)) {
161 } catch (Exception exc) {
/openjdk9/hotspot/test/runtime/SelectionResolution/classes/selectionresolution/
H A DResult.java216 public Class<? extends Throwable> exc; field in class:Result.Exception
218 this.exc = e;
228 return exc.isAssignableFrom(e.getClass());
234 return exc.isAssignableFrom(((Exception) r).exc);
246 return exc.equals(exception.exc);
251 return exc.hashCode();
257 sb.append("exc=").append(exc);
[all...]
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xml/internal/serializer/
H A DToSAXHandler.java334 public void fatalError(SAXParseException exc) throws SAXException { argument
335 super.fatalError(exc);
340 ((ErrorHandler)m_saxHandler).fatalError(exc);
347 public void error(SAXParseException exc) throws SAXException { argument
348 super.error(exc);
351 ((ErrorHandler)m_saxHandler).error(exc);
358 public void warning(SAXParseException exc) throws SAXException { argument
359 super.warning(exc);
361 ((ErrorHandler)m_saxHandler).warning(exc);
/openjdk9/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DGroupOfOne.java58 public void failed(Throwable exc, Void att) {
107 public void failed(Throwable exc, Void att) {
108 if (!(exc instanceof AsynchronousCloseException))
109 throw new RuntimeException(exc);
132 public void failed(Throwable exc, Void att) {
133 throw new RuntimeException(exc);
/openjdk9/corba/src/java.corba/share/classes/javax/rmi/CORBA/
H A DStub.java225 INITIALIZE exc = new INITIALIZE( "Cannot instantiate " + className);
226 exc.initCause( ex ) ;
227 throw exc ;
229 INITIALIZE exc = new INITIALIZE( "Error while instantiating" + className);
230 exc.initCause( ex ) ;
231 throw exc ;
249 ClassNotFoundException exc = new ClassNotFoundException( msg ) ;
250 throw exc ;
/openjdk9/hotspot/src/share/vm/ci/
H A DciExceptionHandler.hpp75 bool catches(ciInstanceKlass *exc) { argument
76 return is_catch_all() || exc->is_subtype_of(catch_klass());
/openjdk9/jdk/src/java.base/unix/classes/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.java371 Throwable exc = null;
408 exc = x;
411 if (!(exc instanceof AsynchronousCloseException))
421 Number result = (exc != null) ? null : (scattering) ?
426 future.setResult(result, exc);
429 Invoker.invokeUnchecked(handler, att, result, exc);
431 Invoker.invokeIndirectly(this, handler, att, result, exc);
455 Exception exc = new InterruptedByTimeoutException();
457 future.setFailure(exc);
460 Invoker.invokeIndirectly(ch, handler, att, null, exc);
[all...]
H A DUnixAsynchronousServerSocketChannelImpl.java141 Throwable exc = null;
158 exc = x;
165 if (exc == null) {
171 exc = x;
184 future.setResult(child, exc);
193 Invoker.invoke(this, handler, att, child, exc);
276 Throwable exc = null;
309 exc = x;
315 if (exc == null) {
320 exc
[all...]
/openjdk9/jdk/make/src/classes/build/tools/jdwpgen/
H A DParse.java150 } catch (InstantiationException exc) {
151 error(exc.toString());
153 } catch (IllegalAccessException exc) {
154 error(exc.toString());
/openjdk9/jdk/test/java/lang/ClassLoader/
H A DUninitializedParent.java48 } catch (SecurityException exc) {
/openjdk9/jdk/src/java.base/share/classes/sun/nio/fs/
H A DCancellable.java133 Throwable exc = task.exception();
134 if (exc != null)
135 throw new ExecutionException(exc);
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DPackageListWriter.java74 } catch (IOException exc) {
76 exc.toString(), DocPaths.PACKAGE_LIST);
77 throw new DocletAbortException(exc);

Completed in 370 milliseconds

1234567891011>>