/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | ClassNotFoundException.java | 60 * 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 D | ConnectionEvent.java | 65 * @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 D | Neg03.java | 25 } catch (Exception ex) { 26 ex = new B2(); //effectively final analysis disabled! 27 throw ex;
|
H A D | Neg02.java | 23 } catch (final A | B ex) { 24 ex = new B();
|
H A D | Neg02eff_final.java | 23 } catch (A | B ex) { 24 ex = new B();
|
H A D | Pos06.java | 23 } catch (A | B ex) { 24 System.out.println(ex);
|
/openjdk7/langtools/test/tools/javac/generics/ |
H A D | CatchTyparam.java | 37 } catch (T ex) { 38 } catch (U ex) {
|
/openjdk7/jdk/test/java/util/IllegalFormatException/ |
H A D | Constructors.java | 53 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 D | RMIFailureHandler.java | 51 * @param ex the exception that occurred during <code>ServerSocket</code> 58 public boolean failure(Exception ex); argument
|
H A D | ExportException.java | 61 * @param ex the nested exception 64 public ExportException(String s, Exception ex) { argument 65 super(s, ex);
|
H A D | SocketSecurityException.java | 55 * @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 D | AMXClient.java | 66 } 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 D | AuthenticationException.java | 72 * @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 D | AccessException.java | 64 * @param ex the nested exception 67 public AccessException(String s, Exception ex) { argument 68 super(s, ex);
|
H A D | ConnectException.java | 56 * @param ex the nested exception 59 public ConnectException(String s, Exception ex) { argument 60 super(s, ex);
|
H A D | ConnectIOException.java | 58 * @param ex the nested exception 61 public ConnectIOException(String s, Exception ex) { argument 62 super(s, ex);
|
H A D | MarshalException.java | 65 * @param ex the nested exception 68 public MarshalException(String s, Exception ex) { argument 69 super(s, ex);
|
H A D | ServerException.java | 61 * @param ex the nested exception 64 public ServerException(String s, Exception ex) { argument 65 super(s, ex);
|
H A D | ServerRuntimeException.java | 57 * @param ex the nested exception 62 public ServerRuntimeException(String s, Exception ex) { argument 63 super(s, ex);
|
H A D | StubNotFoundException.java | 61 * @param ex the nested exception 64 public StubNotFoundException(String s, Exception ex) { argument 65 super(s, ex);
|
H A D | UnexpectedException.java | 58 * @param ex the nested exception 61 public UnexpectedException(String s, Exception ex) { argument 62 super(s, ex);
|
H A D | UnknownHostException.java | 56 * @param ex the nested exception 59 public UnknownHostException(String s, Exception ex) { argument 60 super(s, ex);
|
H A D | UnmarshalException.java | 70 * @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 D | ActivateFailedException.java | 56 * @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 D | FoundType.java | 39 AnnotationTypeMismatchException ex = 41 if (!TYPE.equals(ex.foundType()))
|