/external/apache-http/src/org/apache/commons/logging/ |
LogConfigurationException.java | 55 * Construct a new exception with the specified cause and a derived 58 * @param cause The underlying cause 60 public LogConfigurationException(Throwable cause) { 62 this((cause == null) ? null : cause.toString(), cause); 68 * Construct a new exception with the specified detail message and cause. 71 * @param cause The underlying cause 84 protected Throwable cause = null; field in class:LogConfigurationException [all...] |
/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/ |
ExecutionException.java | 23 * The cause is not initialized, and may subsequently be 30 * message. The cause is not initialized, and may subsequently be 41 * message and cause. 44 * @param cause the cause (which is saved for later retrieval by the 47 public ExecutionException(String message, Throwable cause) { 48 super(message, cause); 52 * Constructs an <tt>ExecutionException</tt> with the specified cause. 55 * (cause == null ? null : cause.toString())</pre [all...] |
RejectedExecutionException.java | 21 * The cause is not initialized, and may subsequently be 28 * specified detail message. The cause is not initialized, and may 40 * specified detail message and cause. 43 * @param cause the cause (which is saved for later retrieval by the 46 public RejectedExecutionException(String message, Throwable cause) { 47 super(message, cause); 52 * specified cause. The detail message is set to: <pre> (cause == 53 * null ? null : cause.toString())</pre> (which typically contain [all...] |
/dalvik/libcore/annotation/src/main/java/java/lang/annotation/ |
AnnotationFormatError.java | 43 * Constructs an instance with a message and a cause. 47 * @param cause 48 * the cause of the error or {@code null} if none. 50 public AnnotationFormatError(String message, Throwable cause) { 51 super(message, cause); 55 * Constructs an instance with a cause. If the cause is not 56 * {@code null}, then {@code cause.toString()} is used as the 59 * @param cause 60 * the cause of the error or {@code null} if none [all...] |
/frameworks/base/core/java/com/google/android/mms/ |
MmsException.java | 43 * Creates a new MmsException with the specified cause. 45 * @param cause the cause. 47 public MmsException(Throwable cause) { 48 super(cause); 52 * Creates a new MmsException with the specified detail message and cause. 55 * @param cause the cause. 57 public MmsException(String message, Throwable cause) { 58 super(message, cause); [all...] |
/dalvik/libcore/luni/src/main/java/java/lang/ |
IllegalArgumentException.java | 49 * trace, the specified detail message and the specified cause. 53 * @param cause 54 * the cause of this exception, may be {@code null}. 57 public IllegalArgumentException(String message, Throwable cause) { 58 super(message, cause); 63 * trace and the specified cause. 65 * @param cause 66 * the cause of this exception, may be {@code null}. 69 public IllegalArgumentException(Throwable cause) { 70 super((cause == null ? null : cause.toString()), cause) [all...] |
IllegalStateException.java | 49 * trace, the specified detail message and the specified cause. 53 * @param cause 54 * the cause of this exception. 57 public IllegalStateException(String message, Throwable cause) { 58 super(message, cause); 63 * trace and the specified cause. 65 * @param cause 66 * the cause of this exception, may be {@code null}. 69 public IllegalStateException(Throwable cause) { 70 super((cause == null ? null : cause.toString()), cause) [all...] |
SecurityException.java | 48 * the specified detail message and the specified cause. 52 * @param cause 53 * the optional cause of this exception, may be {@code null}. 56 public SecurityException(String message, Throwable cause) { 57 super(message, cause); 62 * and the specified cause. 64 * @param cause 65 * the optional cause of this exception, may be {@code null}. 68 public SecurityException(Throwable cause) { 69 super((cause == null ? null : cause.toString()), cause) [all...] |
UnsupportedOperationException.java | 47 * stack trace, the specified detail message and the specified cause. 51 * @param cause 52 * the optional cause of this exception, may be {@code null}. 55 public UnsupportedOperationException(String message, Throwable cause) { 56 super(message, cause); 61 * stack trace and the specified cause. 63 * @param cause 64 * the optional cause of this exception, may be {@code null}. 67 public UnsupportedOperationException(Throwable cause) { 68 super((cause == null ? null : cause.toString()), cause) [all...] |
/dalvik/libcore/x-net/src/main/java/javax/net/ssl/ |
SSLException.java | 39 * Creates a new {@code SSLException} with the specified message and cause. 43 * @param cause 44 * the cause. 46 public SSLException(String message, Throwable cause) { 48 super.initCause(cause); 52 * Creates a new {@code SSLException} with the specified cause. 54 * @param cause 55 * the cause 57 public SSLException(Throwable cause) { 58 super(cause == null ? null : cause.toString()) [all...] |
/dalvik/tests/063-process-manager/ |
info.txt | 2 doesn't cause the system to busy-wait.
|
/external/webkit/LayoutTests/http/tests/appcache/ |
crash-when-navigating-away-then-back-expected.txt | 1 This tests that loading a page with a manifest, navigating away from the page, and then back does not cause a crash.
|
/external/webkit/LayoutTests/storage/ |
open-database-empty-version-expected.txt | 1 This tests that calling openDatabase with an empty version string does not cause an exception to be thrown.
|
close-during-stress-test-expected.txt | 1 Should not crash or cause an assertion failure. 3 A JavaScript failure on the console is expected, however, as the global object is cleared when closing a frame. It actually helps to cause database activity by throwing an exception from a callback.
|
/packages/apps/Email/src/org/apache/commons/io/ |
IOExceptionWithCause.java | 38 * Constructs a new instance with the given message and cause.
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
46 * @param cause
47 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
49 public IOExceptionWithCause(String message, Throwable cause) {
51 this.initCause(cause);
55 * Constructs a new instance with the given cause.
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable. [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/ |
InvalidTypeException.java | 50 * Constructs a new exception with the specified cause and a detail message of 51 * <code>(cause==null ? null : cause.toString())</code> (which typically contains 52 * the class and detail message of cause). 53 * @param cause the cause (which is saved for later retrieval by the 55 * and indicates that the cause is nonexistent or unknown.) 58 public InvalidTypeException(Throwable cause) { 59 super(cause); 63 * Constructs a new exception with the specified detail message and cause [all...] |
InvalidValueTypeException.java | 54 * Constructs a new exception with the specified cause and a detail message of 55 * <code>(cause==null ? null : cause.toString())</code> (which typically contains 56 * the class and detail message of cause). 57 * @param cause the cause (which is saved for later retrieval by the 59 * and indicates that the cause is nonexistent or unknown.) 62 public InvalidValueTypeException(Throwable cause) { 63 super(cause); 67 * Constructs a new exception with the specified detail message and cause [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/ |
LocalizedException.java | 12 private Throwable cause; field in class:LocalizedException 25 * Constructs a new LocalizedException with the specified localized message and cause. 27 * @param throwable the cause 33 this.cause = throwable; 47 return cause;
|
/dalvik/libcore/security/src/main/java/java/security/ |
DigestException.java | 46 * given message and the cause. 50 * @param cause 51 * the exception which is the cause for this exception. 53 public DigestException(String message, Throwable cause) { 54 super(message, cause); 59 * cause. 61 * @param cause 62 * the exception which is the cause for this exception. 64 public DigestException(Throwable cause) { 65 super(cause); [all...] |
GeneralSecurityException.java | 47 * given message and the cause. 51 * @param cause 52 * the exception which is the cause for this exception. 54 public GeneralSecurityException(String message, Throwable cause) { 55 super(message, cause); 60 * cause. 62 * @param cause 63 * the exception which is the cause for this exception. 65 public GeneralSecurityException(Throwable cause) { 66 super(cause); [all...] |
InvalidAlgorithmParameterException.java | 47 * given message and the cause. 51 * @param cause 52 * the exception which is the cause for this exception. 54 public InvalidAlgorithmParameterException(String message, Throwable cause) { 55 super(message, cause); 60 * with the cause. 62 * @param cause 63 * the exception which is the cause for this exception. 65 public InvalidAlgorithmParameterException(Throwable cause) { 66 super(cause); [all...] |
InvalidKeyException.java | 47 * message and the cause. 51 * @param cause 52 * the exception which is the cause for this exception. 54 public InvalidKeyException(String message, Throwable cause) { 55 super(message, cause); 59 * Constructs a new instance of {@code InvalidKeyException} with the cause. 61 * @param cause 62 * the exception which is the cause for this exception. 64 public InvalidKeyException(Throwable cause) { 65 super(cause); [all...] |
KeyException.java | 45 * and the cause. 49 * @param cause 50 * the exception which is the cause for this exception. 52 public KeyException(String message, Throwable cause) { 53 super(message, cause); 57 * Constructs a new instance of {@code KeyException} with the cause. 59 * @param cause 60 * the exception which is the cause for this exception. 62 public KeyException(Throwable cause) { 63 super(cause); [all...] |
KeyManagementException.java | 47 * given message and the cause. 51 * @param cause 52 * the exception which is the cause for this exception. 54 public KeyManagementException(String message, Throwable cause) { 55 super(message, cause); 60 * cause. 62 * @param cause 63 * the exception which is the cause for this exception. 65 public KeyManagementException(Throwable cause) { 66 super(cause); [all...] |
KeyStoreException.java | 48 * given message and the cause. 52 * @param cause 53 * the exception which is the cause for this exception. 55 public KeyStoreException(String message, Throwable cause) { 56 super(message, cause); 61 * cause. 63 * @param cause 64 * the exception which is the cause for this exception. 66 public KeyStoreException(Throwable cause) { 67 super(cause); [all...] |