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

1234567891011

/openjdk7/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.java105 } catch (Throwable exc) {
107 ".getValue(" + index + ") - unexpected: " + exc);
116 } catch (IndexOutOfBoundsException exc) {
118 ".getValue(" + index + ") - got expected: " + exc);
119 } catch (Throwable exc) {
121 ".getValue(" + index + ") - unexpected: " + exc);
143 } catch (Throwable exc) {
145 " - unexpected: " + exc);
169 } catch (Throwable exc) {
171 index + ", " + length + ") - unexpected: " + exc);
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/trace/
H A DStreamRedirectThread.java77 } catch(IOException exc) {
78 System.err.println("Child I/O Transfer - " + exc);
H A DTrace.java99 } catch (IOException exc) {
101 + " - " + exc);
154 } catch (InterruptedException exc) {
170 } catch (IOException exc) {
171 throw new Error("Unable to launch target VM: " + exc);
172 } catch (IllegalConnectorArgumentsException exc) {
173 throw new Error("Internal error: " + exc);
174 } catch (VMStartException exc) {
176 exc.getMessage());
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DClassObjectReferenceImpl.java47 } catch (JDWPException exc) {
48 throw exc.toJDIException();
H A DReferenceTypeImpl.java180 } catch (JDWPException exc) {
181 throw exc.toJDIException();
197 } catch (JDWPException exc) {
198 throw exc.toJDIException();
215 } catch (JDWPException exc) {
216 throw exc.toJDIException();
312 } catch (JDWPException exc) {
313 throw exc.toJDIException();
331 } catch (JDWPException exc) {
332 throw exc
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DSimpleAsynchronousFileChannelImpl.java188 Throwable exc = new ClosedChannelException();
190 return CompletedFuture.withFailure(exc);
191 Invoker.invokeIndirectly(handler, attachment, null, exc, executor);
199 Throwable exc = null;
216 exc = x;
224 result.setResult(fli, exc);
226 Invoker.invokeUnchecked(handler, attachment, fli, exc);
303 Throwable exc = (isOpen()) ? null : new ClosedChannelException();
305 return CompletedFuture.withResult(0, exc);
306 Invoker.invokeIndirectly(handler, attachment, 0, exc, executo
[all...]
H A DInvoker.java123 Throwable exc)
125 if (exc == null) {
128 handler.failed(exc, attachment);
142 Throwable exc)
145 Invoker.invokeUnchecked(handler, attachment, result, exc);
157 Throwable exc)
173 invokeDirect(thisGroupAndInvokeCount, handler, attachment, result, exc);
176 invokeIndirectly(channel, handler, attachment, result, exc);
182 handler, attachment, result, exc);
197 final Throwable exc)
120 invokeUnchecked(CompletionHandler<V,? super A> handler, A attachment, V value, Throwable exc) argument
138 invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
153 invoke(AsynchronousChannel channel, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
193 invokeIndirectly(AsynchronousChannel channel, final CompletionHandler<V,? super A> handler, final A attachment, final V result, final Throwable exc) argument
217 invokeIndirectly(final CompletionHandler<V,? super A> handler, final A attachment, final V value, final Throwable exc, Executor executor) argument
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/orbutil/concurrent/
H A DSyncUtil.java44 } catch (InterruptedException exc) {
/openjdk7/corba/src/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
/openjdk7/jaxws/src/share/jaxws_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 );
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DDocletInvoker.java93 } catch (ClassNotFoundException exc) {
161 } catch (DocletInvokeException exc) {
185 } catch (DocletInvokeException exc) {
210 } catch (DocletInvokeException exc) {
234 } catch (DocletInvokeException exc) {
258 } catch (NoSuchMethodException exc) {
266 } catch (SecurityException exc) {
281 } catch (IllegalArgumentException exc) {
283 docletClassName, methodName, exc.toString());
285 } catch (IllegalAccessException exc) {
[all...]
/openjdk7/corba/src/share/classes/javax/rmi/
H A DPortableRemoteObject.java200 INITIALIZE exc = new INITIALIZE( "Cannot instantiate " + className);
201 exc.initCause( ex ) ;
202 throw exc ;
204 INITIALIZE exc = new INITIALIZE( "Error while instantiating" + className);
205 exc.initCause( ex ) ;
206 throw exc ;
224 ClassNotFoundException exc = new ClassNotFoundException( msg ) ;
225 throw exc ;
271 } catch (Exception exc) {
274 " not found: " + exc) ;
[all...]
/openjdk7/corba/src/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) {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DToSAXHandler.java369 public void fatalError(SAXParseException exc) throws SAXException { argument
370 super.fatalError(exc);
375 ((ErrorHandler)m_saxHandler).fatalError(exc);
382 public void error(SAXParseException exc) throws SAXException { argument
383 super.error(exc);
386 ((ErrorHandler)m_saxHandler).error(exc);
393 public void warning(SAXParseException exc) throws SAXException { argument
394 super.warning(exc);
397 ((ErrorHandler)m_saxHandler).warning(exc);
/openjdk7/jdk/test/java/nio/channels/AsynchronousChannelGroup/
H A DGroupOfOne.java56 public void failed(Throwable exc, Void att) {
105 public void failed(Throwable exc, Void att) {
106 if (!(exc instanceof AsynchronousCloseException))
107 throw new RuntimeException(exc);
130 public void failed(Throwable exc, Void att) {
131 throw new RuntimeException(exc);
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DStub.java227 INITIALIZE exc = new INITIALIZE( "Cannot instantiate " + className);
228 exc.initCause( ex ) ;
229 throw exc ;
231 INITIALIZE exc = new INITIALIZE( "Error while instantiating" + className);
232 exc.initCause( ex ) ;
233 throw exc ;
251 ClassNotFoundException exc = new ClassNotFoundException( msg ) ;
252 throw exc ;
/openjdk7/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());
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DUnixAsynchronousSocketChannelImpl.java372 Throwable exc = null;
409 exc = x;
412 if (!(exc instanceof AsynchronousCloseException))
422 Number result = (exc != null) ? null : (scattering) ?
427 future.setResult(result, exc);
430 Invoker.invokeUnchecked(handler, att, result, exc);
432 Invoker.invokeIndirectly(this, handler, att, result, exc);
456 Exception exc = new InterruptedByTimeoutException();
458 future.setFailure(exc);
461 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...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DEventRequestSpec.java84 } catch(Exception exc) {
86 specs.notifyError(this, exc);
107 } catch(Exception exc) {
109 specs.notifyError(this, exc);
/openjdk7/jdk/make/tools/src/build/tools/jdwpgen/
H A DParse.java149 } catch (InstantiationException exc) {
150 error(exc.toString());
152 } catch (IllegalAccessException exc) {
153 error(exc.toString());
/openjdk7/jdk/test/java/lang/ClassLoader/
H A DUninitializedParent.java48 } catch (SecurityException exc) {
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DCancellable.java133 Throwable exc = task.exception();
134 if (exc != null)
135 throw new ExecutionException(exc);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/io/
H A DIIOPInputStream.java681 IOException exc = new IOException(e.getMessage());
682 exc.initCause(e) ;
683 throw exc ;
702 IOException exc = new IOException(e.getMessage());
703 exc.initCause(e) ;
704 throw exc ;
719 IOException exc = new IOException(e.getMessage());
720 exc.initCause(e);
721 throw exc ;
735 IOException exc
[all...]

Completed in 142 milliseconds

1234567891011