/openjdk7/hotspot/src/share/vm/gc_interface/ |
H A D | gcCause.cpp | 28 const char* GCCause::to_string(GCCause::Cause cause) { argument 29 switch (cause) { 97 return "ILLEGAL VALUE - last gc cause - ILLEGAL VALUE";
|
/openjdk7/corba/src/share/classes/javax/activity/ |
H A D | ActivityCompletedException.java | 54 * Constructs a new throwable with the specified cause. 56 * @param cause a chained exception of type 59 public ActivityCompletedException(Throwable cause) { argument 60 this("", cause); 64 * Constructs a new throwable with the specified detail message and cause. 68 * @param cause a chained exception of type 71 public ActivityCompletedException(String message, Throwable cause) { argument 72 super(message, cause);
|
H A D | ActivityRequiredException.java | 52 * Constructs a new throwable with the specified cause. 54 * @param cause a chained exception of type 57 public ActivityRequiredException(Throwable cause) { argument 58 this("", cause); 62 * Constructs a new throwable with the specified detail message and cause. 66 * @param cause a chained exception of type 69 public ActivityRequiredException(String message, Throwable cause) { argument 70 super(message, cause);
|
H A D | InvalidActivityException.java | 56 * Constructs a new throwable with the specified cause. 58 * @param cause a chained exception of type 61 public InvalidActivityException(Throwable cause) { argument 62 this("", cause); 66 * Constructs a new throwable with the specified detail message and cause. 70 * @param cause a chained exception of type 73 public InvalidActivityException(String message, Throwable cause) { argument 74 super(message, cause);
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | IOError.java | 36 * Constructs a new instance of IOError with the specified cause. The 38 * <tt>(cause==null ? null : cause.toString())</tt> (which typically 39 * contains the class and detail message of cause). 41 * @param cause 42 * The cause of this error, or <tt>null</tt> if the cause 45 public IOError(Throwable cause) { argument 46 super(cause);
|
H A D | IOException.java | 63 * and cause. 65 * <p> Note that the detail message associated with {@code cause} is 73 * @param cause 74 * The cause (which is saved for later retrieval by the 76 * and indicates that the cause is nonexistent or unknown.) 80 public IOException(String message, Throwable cause) { argument 81 super(message, cause); 85 * Constructs an {@code IOException} with the specified cause and a 86 * detail message of {@code (cause==null ? null : cause 98 IOException(Throwable cause) argument [all...] |
/openjdk7/jdk/src/share/classes/javax/imageio/ |
H A D | IIOException.java | 46 * <code>String</code>. No underlying cause is set; 60 * underlying cause. 63 * @param cause the <code>Throwable</code> (<code>Error</code> or 69 public IIOException(String message, Throwable cause) { argument 71 initCause(cause);
|
/openjdk7/jdk/test/java/security/Exceptions/ |
H A D | ChainingConstructors.java | 38 private static Exception cause = new Exception("cause"); field in class:ChainingConstructors 41 SecurityException se = new SecurityException(cause); 42 if (!se.getCause().equals(cause)) { 45 se = new SecurityException(MSG, cause); 46 if (!se.getMessage().equals(MSG) || !se.getCause().equals(cause)) { 50 DigestException de = new DigestException(cause); 51 if (!de.getCause().equals(cause)) { 54 de = new DigestException(MSG, cause); 55 if (!de.getMessage().equals(MSG) || !de.getCause().equals(cause)) { [all...] |
/openjdk7/jaxp/src/javax/xml/datatype/ |
H A D | DatatypeConfigurationException.java | 39 * no specified detail mesage and cause.</p> 59 * the specified detail message and cause.</p> 62 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown. 65 public DatatypeConfigurationException(String message, Throwable cause) { argument 66 super(message, cause); 71 * the specified cause.</p> 73 * @param cause The cause 76 DatatypeConfigurationException(Throwable cause) argument [all...] |
/openjdk7/jaxp/src/javax/xml/xpath/ |
H A D | XPathExpressionException.java | 46 * <p>The <code>cause</code> is not initialized.</p> 62 * with the specified <code>cause</code>.</p> 64 * <p>If <code>cause</code> is <code>null</code>, 67 * @param cause The cause. 69 * @throws NullPointerException if <code>cause</code> is <code>null</code>. 71 public XPathExpressionException(Throwable cause) { argument 72 super(cause);
|
H A D | XPathFactoryConfigurationException.java | 45 * <p>The <code>cause</code> is not initialized.</p> 61 * with the specified <code>cause</code>.</p> 63 * <p>If <code>cause</code> is <code>null</code>, 66 * @param cause The cause. 68 * @throws NullPointerException if <code>cause</code> is <code>null</code>. 70 public XPathFactoryConfigurationException(Throwable cause) { argument 71 super(cause);
|
H A D | XPathFunctionException.java | 45 * <p>The <code>cause</code> is not initialized.</p> 60 * <p>Constructs a new <code>XPathFunctionException</code> with the specified <code>cause</code>.</p> 62 * <p>If <code>cause</code> is <code>null</code>, 65 * @param cause The cause. 67 * @throws NullPointerException if <code>cause</code> is <code>null</code>. 69 public XPathFunctionException(Throwable cause) { argument 70 super(cause);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/ |
H A D | DebuggerException.java | 36 public DebuggerException(String message, Throwable cause) { argument 37 super(message, cause); 40 public DebuggerException(Throwable cause) { argument 41 super(cause);
|
/openjdk7/jdk/src/share/classes/javax/smartcardio/ |
H A D | CardException.java | 50 * Constructs a new CardException with the specified cause and a detail message 51 * of <code>(cause==null ? null : cause.toString())</code>. 53 * @param cause the cause of this exception or null 55 public CardException(Throwable cause) { argument 56 super(cause); 60 * Constructs a new CardException with the specified detail message and cause. 63 * @param cause the cause o 65 CardException(String message, Throwable cause) argument [all...] |
H A D | CardNotPresentException.java | 50 * Constructs a new CardNotPresentException with the specified cause and a detail message 51 * of <code>(cause==null ? null : cause.toString())</code>. 53 * @param cause the cause of this exception or null 55 public CardNotPresentException(Throwable cause) { argument 56 super(cause); 60 * Constructs a new CardNotPresentException with the specified detail message and cause. 63 * @param cause the cause o 65 CardNotPresentException(String message, Throwable cause) argument [all...] |
/openjdk7/jdk/src/share/classes/java/lang/ |
H A D | AssertionError.java | 68 * becomes the <i>cause</i> of the newly constructed assertion error. 153 * detail message and cause. 156 * {@code cause} is <i>not</i> automatically incorporated in 160 * @param cause the cause, may be {@code null} 164 public AssertionError(String message, Throwable cause) { argument 165 super(message, cause);
|
H A D | BootstrapMethodError.java | 60 * detail message and cause. 63 * @param cause the cause, may be {@code null}. 65 public BootstrapMethodError(String s, Throwable cause) { argument 66 super(s, cause); 71 * cause. 73 * @param cause the cause, may be {@code null}. 75 public BootstrapMethodError(Throwable cause) { argument 76 // cf. Throwable(Throwable cause) constructo [all...] |
H A D | IllegalArgumentException.java | 58 * cause. 60 * <p>Note that the detail message associated with <code>cause</code> is 66 * @param cause the cause (which is saved for later retrieval by the 68 * is permitted, and indicates that the cause is nonexistent or 72 public IllegalArgumentException(String message, Throwable cause) { argument 73 super(message, cause); 77 * Constructs a new exception with the specified cause and a detail 78 * message of <tt>(cause==null ? null : cause 90 IllegalArgumentException(Throwable cause) argument [all...] |
H A D | IllegalStateException.java | 60 * cause. 62 * <p>Note that the detail message associated with <code>cause</code> is 68 * @param cause the cause (which is saved for later retrieval by the 70 * is permitted, and indicates that the cause is nonexistent or 74 public IllegalStateException(String message, Throwable cause) { argument 75 super(message, cause); 79 * Constructs a new exception with the specified cause and a detail 80 * message of <tt>(cause==null ? null : cause 92 IllegalStateException(Throwable cause) argument [all...] |
H A D | LinkageError.java | 60 * message and cause. 63 * @param cause the cause, may be {@code null} 66 public LinkageError(String s, Throwable cause) { argument 67 super(s, cause);
|
H A D | ReflectiveOperationException.java | 40 * message. The cause is not initialized, and may subsequently be 49 * The cause is not initialized, and may subsequently be 61 * and cause. 64 * {@code cause} is <em>not</em> automatically incorporated in 69 * @param cause the cause (which is saved for later retrieval by the 71 * permitted, and indicates that the cause is nonexistent or 74 public ReflectiveOperationException(String message, Throwable cause) { argument 75 super(message, cause); 79 * Constructs a new exception with the specified cause an 88 ReflectiveOperationException(Throwable cause) argument [all...] |
H A D | SecurityException.java | 57 * detail message and cause. 61 * @param cause the cause (which is saved for later retrieval by the 63 * and indicates that the cause is nonexistent or unknown.) 66 public SecurityException(String message, Throwable cause) { argument 67 super(message, cause); 71 * Creates a <code>SecurityException</code> with the specified cause 72 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt> 74 * <tt>cause</t 81 SecurityException(Throwable cause) argument [all...] |
H A D | TypeNotPresentException.java | 53 * with the specified cause. 56 * @param cause the exception that was thrown when the system attempted to 59 public TypeNotPresentException(String typeName, Throwable cause) { argument 60 super("Type " + typeName + " not present", cause);
|
H A D | UnsupportedOperationException.java | 57 * cause. 59 * <p>Note that the detail message associated with <code>cause</code> is 65 * @param cause the cause (which is saved for later retrieval by the 67 * is permitted, and indicates that the cause is nonexistent or 71 public UnsupportedOperationException(String message, Throwable cause) { argument 72 super(message, cause); 76 * Constructs a new exception with the specified cause and a detail 77 * message of <tt>(cause==null ? null : cause 89 UnsupportedOperationException(Throwable cause) argument [all...] |
/openjdk7/jdk/src/share/classes/java/lang/annotation/ |
H A D | AnnotationFormatError.java | 54 * detail message and cause. Note that the detail message associated 55 * with <code>cause</code> is <i>not</i> automatically incorporated in 59 * @param cause the cause (A <tt>null</tt> value is permitted, and 60 * indicates that the cause is nonexistent or unknown.) 62 public AnnotationFormatError(String message, Throwable cause) { argument 63 super(message, cause); 69 * cause and a detail message of 70 * <tt>(cause == null ? null : cause 76 AnnotationFormatError(Throwable cause) argument [all...] |