Searched defs:ex (Results 1 - 25 of 142) sorted by relevance

123456

/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DUnknownException.java52 * @param ex a Throwable object--to be wrapped in this exception.
54 public UnknownException(Throwable ex) { argument
56 originalEx = ex;
/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DAuthenticationException.java72 * @param ex A possibly null root exception that caused this exception.
77 public AuthenticationException (String detail, Throwable ex) { argument
78 super(detail, ex);
/openjdk7/jdk/src/share/classes/javax/sql/
H A DConnectionEvent.java65 * @param ex the SQLException about to be thrown to the application
68 public ConnectionEvent(PooledConnection con, SQLException ex) { argument
70 this.ex = ex;
79 public SQLException getSQLException() { return ex; }
87 private SQLException ex = null; field in class:ConnectionEvent
/openjdk7/jdk/src/share/classes/java/rmi/
H A DAccessException.java64 * @param ex the nested exception
67 public AccessException(String s, Exception ex) { argument
68 super(s, ex);
H A DConnectException.java56 * @param ex the nested exception
59 public ConnectException(String s, Exception ex) { argument
60 super(s, ex);
H A DConnectIOException.java58 * @param ex the nested exception
61 public ConnectIOException(String s, Exception ex) { argument
62 super(s, ex);
H A DMarshalException.java65 * @param ex the nested exception
68 public MarshalException(String s, Exception ex) { argument
69 super(s, ex);
H A DServerException.java61 * @param ex the nested exception
64 public ServerException(String s, Exception ex) { argument
65 super(s, ex);
H A DServerRuntimeException.java57 * @param ex the nested exception
62 public ServerRuntimeException(String s, Exception ex) { argument
63 super(s, ex);
H A DStubNotFoundException.java61 * @param ex the nested exception
64 public StubNotFoundException(String s, Exception ex) { argument
65 super(s, ex);
H A DUnexpectedException.java58 * @param ex the nested exception
61 public UnexpectedException(String s, Exception ex) { argument
62 super(s, ex);
H A DUnknownHostException.java56 * @param ex the nested exception
59 public UnknownHostException(String s, Exception ex) { argument
60 super(s, ex);
H A DUnmarshalException.java70 * @param ex the nested exception
73 public UnmarshalException(String s, Exception ex) { argument
74 super(s, ex);
/openjdk7/jdk/src/share/classes/java/rmi/activation/
H A DActivateFailedException.java56 * @param ex the nested exception
59 public ActivateFailedException(String s, Exception ex) { argument
60 super(s, ex);
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DExportException.java61 * @param ex the nested exception
64 public ExportException(String s, Exception ex) { argument
65 super(s, ex);
H A DRMIFailureHandler.java51 * @param ex the exception that occurred during <code>ServerSocket</code>
58 public boolean failure(Exception ex); argument
H A DSkeletonNotFoundException.java62 * @param ex the nested exception
65 public SkeletonNotFoundException(String s, Exception ex) { argument
66 super(s, ex);
H A DSocketSecurityException.java55 * @param ex the nested exception
58 public SocketSecurityException(String s, Exception ex) { argument
59 super(s, ex);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DReferralEnumeration.java31 void appendUnprocessedReferrals(LdapReferralException ex); argument
/openjdk7/jdk/test/com/sun/crypto/provider/Cipher/UTIL/
H A DTestUtil.java39 } catch (Exception ex) {
42 re.initCause(ex);
64 public static void handleSE(SecurityException ex) argument
70 !(ex.getMessage().startsWith("Unsupported keysize"))) {
71 throw ex;
/openjdk7/jdk/src/share/classes/java/io/
H A DWriteAbortedException.java64 * @param ex Exception causing the abort.
66 public WriteAbortedException(String s, Exception ex) { argument
69 detail = ex;
/openjdk7/jdk/src/share/classes/java/lang/
H A DClassNotFoundException.java60 * This field holds the exception ex if the
61 * ClassNotFoundException(String s, Throwable ex) constructor was
66 private Throwable ex; field in class:ClassNotFoundException
91 * @param ex the exception that was raised while loading the class
94 public ClassNotFoundException(String s, Throwable ex) { argument
96 this.ex = ex;
111 return ex;
123 return ex;
/openjdk7/jdk/test/java/awt/regtesthelpers/
H A DAbstractTest.java63 public static void fail(Exception ex) throws Exception argument
66 ex.printStackTrace();
68 throw ex;
/openjdk7/jdk/test/java/lang/reflect/ReflectPermission/
H A DExceptions.java41 static void fail(String fs, Throwable ex) { argument
42 String s = "'" + fs + "': " + ex.getClass().getName() + " thrown";
44 first = ex;
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DArgs.java44 private static void tryCatch(Class ex, Thunk thunk) { argument
49 if (ex.isAssignableFrom(x.getClass())) {
55 fail(ex.getName() + " not thrown");

Completed in 111 milliseconds

123456