Searched refs:ex (Results 1 - 25 of 1040) sorted by relevance

1234567891011>>

/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/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/langtools/test/tools/javac/multicatch/
H A DNeg03.java25 } catch (Exception ex) {
26 ex = new B2(); //effectively final analysis disabled!
27 throw ex;
H A DNeg02.java23 } catch (final A | B ex) {
24 ex = new B();
H A DNeg02eff_final.java23 } catch (A | B ex) {
24 ex = new B();
H A DPos06.java23 } catch (A | B ex) {
24 System.out.println(ex);
/openjdk7/langtools/test/tools/javac/generics/
H A DCatchTyparam.java37 } catch (T ex) {
38 } catch (U ex) {
/openjdk7/jdk/test/java/util/IllegalFormatException/
H A DConstructors.java53 IllegalFormatException ex;
55 ex = new DuplicateFormatFlagsException(null);
56 fail(ex, NPE);
62 ex = new FormatFlagsConversionMismatchException(null, 'a');
63 fail(ex, NPE);
69 ex = new IllegalFormatConversionException('b', null);
70 fail(ex, NPE);
76 ex = new IllegalFormatFlagsException(null);
77 fail(ex, NPE);
83 ex
[all...]
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMIFailureHandler.java51 * @param ex the exception that occurred during <code>ServerSocket</code>
58 public boolean failure(Exception ex); argument
H A DExportException.java61 * @param ex the nested exception
64 public ExportException(String s, Exception ex) { argument
65 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/jaxws/src/share/jaxws_classes/com/sun/org/glassfish/gmbal/
H A DAMXClient.java66 } catch (MalformedObjectNameException ex) {
147 } catch (MBeanException ex) {
148 throw new GmbalException( "Exception in getMeta", ex ) ;
149 } catch (RuntimeOperationsException ex) {
150 throw new GmbalException( "Exception in getMeta", ex ) ;
151 } catch (InstanceNotFoundException ex) {
152 throw new GmbalException( "Exception in getMeta", ex ) ;
153 } catch (IntrospectionException ex) {
154 throw new GmbalException( "Exception in getMeta", ex ) ;
155 } catch (ReflectionException ex) {
[all...]
/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/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/test/java/lang/annotation/AnnotationTypeMismatchException/
H A DFoundType.java39 AnnotationTypeMismatchException ex =
41 if (!TYPE.equals(ex.foundType()))

Completed in 136 milliseconds

1234567891011>>