Searched refs:exc (Results 51 - 75 of 275) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
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();
393 } catch (JDWPException exc) {
394 if (exc.errorCode() == JDWP.Error.INVALID_THREAD) {
397 throw exc.toJDIException();
421 } catch (JDWPException exc) {
[all...]
H A DStackFrameImpl.java138 } catch (JDWPException exc) {
139 switch (exc.errorCode()) {
145 throw exc.toJDIException();
234 } catch (JDWPException exc) {
235 switch (exc.errorCode()) {
241 throw exc.toJDIException();
293 } catch (JDWPException exc) {
294 switch (exc.errorCode()) {
300 throw exc.toJDIException();
351 } catch (JDWPException exc) {
[all...]
H A DArrayReferenceImpl.java65 } catch (JDWPException exc) {
66 throw exc.toJDIException();
121 } catch (JDWPException exc) {
122 throw exc.toJDIException();
199 } catch (JDWPException exc) {
200 throw exc.toJDIException();
H A DVirtualMachineImpl.java199 } catch (JDWPException exc) {
200 throw exc.toJDIException();
318 } catch (JDWPException exc) {
319 switch (exc.errorCode()) {
354 throw exc.toJDIException();
409 } catch (JDWPException exc) {
410 throw exc.toJDIException();
426 } catch (VMDisconnectedException exc) {
444 } catch (JDWPException exc) {
445 switch (exc
[all...]
H A DClassTypeImpl.java50 } catch (JDWPException exc) {
51 throw exc.toJDIException();
144 } catch (JDWPException exc) {
145 throw exc.toJDIException();
229 } catch (JDWPException exc) {
230 if (exc.errorCode() == JDWP.Error.INVALID_THREAD) {
233 throw exc.toJDIException();
277 } catch (JDWPException exc) {
278 if (exc.errorCode() == JDWP.Error.INVALID_THREAD) {
281 throw exc
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DFramesTest.java81 } catch (IndexOutOfBoundsException exc) {
83 } catch (Exception exc) {
86 " - " + exc);
113 } catch (Exception exc) {
116 " - " + exc);
H A DJITDebug.java121 } catch (IOException exc) {
122 new RuntimeException("Unexpected exception: " + exc);
164 } catch (Exception exc) {
165 throw new RuntimeException("Unexpected exception: " + exc);
225 } catch (Exception exc) {
227 System.err.println("Exception: " + exc + " - hanging");
238 } catch (InterruptedException exc) {
H A DPopAsynchronousTest.java95 } catch (Exception exc) {
96 exc.printStackTrace(System.err);
97 failure("TEST FAILURE: exception " + exc);
159 } catch (Exception exc) {
160 exc.printStackTrace(System.err);
161 failure("TEST FAILURE: exception " + exc);
/openjdk7/jdk/test/java/nio/file/
H A DTestUtil.java58 public FileVisitResult postVisitDirectory(Path dir, IOException exc) {
67 public FileVisitResult visitFileFailed(Path file, IOException exc) {
68 System.err.format("Unable to visit %s: %s\n", file, exc);
77 } catch (IOException exc) {
78 System.err.format("Unable to delete %s: %s\n", file, exc);
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpURLConnection.java466 Exception exc = null;
470 exc = e;
479 if (exc != null) {
480 if (exc instanceof RuntimeException)
481 throw (RuntimeException)exc;
483 throw (IOException)exc;
/openjdk7/jdk/test/java/net/DatagramSocketImpl/
H A DCheckDiscard.java91 Exception exc = null; field in class:CheckDiscard.Sender
105 exc = e;
109 return exc;
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/presentation/rmi/
H A DStubConnectImpl.java86 } catch (BAD_OPERATION exc) {
89 } catch (BAD_INV_ORDER exc) {
110 } catch (SystemException exc) {
111 throw new RemoteException("CORBA SystemException", exc );
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orb/
H A DParserImplBase.java92 } catch (Exception exc) {
93 throw wrapper.fieldNotFound( exc, name ) ;
124 } catch (PrivilegedActionException exc) {
125 // Since exc wraps the actual exception, use exc.getCause()
126 // instead of exc.
127 throw wrapper.errorSettingField( exc.getCause(), name,
/openjdk7/hotspot/test/runtime/7158988/
H A DFieldMonitor.java142 } catch (InterruptedException exc) {
189 } catch (IOException exc) {
190 throw new Error("Unable to launch target VM: " + exc);
191 } catch (IllegalConnectorArgumentsException exc) {
192 throw new Error("Internal error: " + exc);
193 } catch (VMStartException exc) {
195 exc.getMessage());
247 } catch(IOException exc) {
248 System.err.println("Child I/O Transfer - " + exc);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/copyobject/
H A DJavaStreamObjectCopierImpl.java71 } catch (Exception exc) {
72 System.out.println( "Failed with exception:" + exc ) ;
/openjdk7/corba/src/share/classes/javax/rmi/CORBA/
H A DGetORBPropertiesFileAction.java83 } catch (Exception exc) {
86 " not found: " + exc) ;
H A DUtil.java360 INITIALIZE exc = new INITIALIZE( "Cannot instantiate " + className);
361 exc.initCause( ex ) ;
362 throw exc ;
364 INITIALIZE exc = new INITIALIZE( "Error while instantiating" + className);
365 exc.initCause( ex ) ;
366 throw exc ;
383 ClassNotFoundException exc = new ClassNotFoundException( msg ) ;
384 throw exc ;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DManagedObjectManagerFactory.java79 } catch (SecurityException exc) {
80 throw new GmbalException( "Unexpected exception", exc ) ;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DPackageListWriter.java70 } catch (IOException exc) {
72 exc.toString(), DocletConstants.PACKAGE_LIST_FILE_NAME);
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/ktab/
H A DKeyTabOutputStream.java74 } catch (UnsupportedEncodingException exc) {
83 } catch (UnsupportedEncodingException exc) {
/openjdk7/jdk/src/share/classes/sun/security/rsa/
H A DRSAPrivateKeyImpl.java81 } catch (IOException exc) {
83 throw new InvalidKeyException(exc);
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DMethodAccessorGenerator.java705 ClassFileAssembler exc = new ClassFileAssembler();
707 exc.emitShort(illegalArgStartPC); // start PC
708 exc.emitShort(invokeStartPC); // end PC
709 exc.emitShort(classCastHandler); // handler PC
710 exc.emitShort(classCastClass); // catch type
712 exc.emitShort(illegalArgStartPC); // start PC
713 exc.emitShort(invokeStartPC); // end PC
714 exc.emitShort(classCastHandler); // handler PC
715 exc.emitShort(nullPointerClass); // catch type
717 exc
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFileTreeWalker.java98 IOException exc = null;
113 exc = x2;
116 exc = x1;
129 if (exc != null) {
130 return visitor.visitFileFailed(file, exc);
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DStreamsSurviveDestroy.java43 Exception exc = null; field in class:StreamsSurviveDestroy.Copier
80 exc = new Exception(name
84 exc = x;
95 if (!acceptException && exc != null)
96 throw new Exception(name + ": Exception thrown", exc);
/openjdk7/jdk/src/share/sample/nio/file/
H A DCopy.java123 public FileVisitResult postVisitDirectory(Path dir, IOException exc) { argument
125 if (exc == null && preserve) {
138 public FileVisitResult visitFileFailed(Path file, IOException exc) { argument
139 if (exc instanceof FileSystemLoopException) {
142 System.err.format("Unable to copy: %s: %s%n", file, exc);

Completed in 179 milliseconds

1234567891011