HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 251 - 275 of 3404) sorted by null

<<11121314151617181920>>

  /external/guava/guava/src/com/google/common/util/concurrent/
ExecutionError.java 25 * with {@code ExecutionException}, the error's {@linkplain #getCause() cause}
26 * comes from a failed task, possibly run in another thread. That cause should
50 * Creates a new instance with the given detail message and cause.
52 public ExecutionError(@Nullable String message, @Nullable Error cause) {
53 super(message, cause);
57 * Creates a new instance with the given cause.
59 public ExecutionError(@Nullable Error cause) {
60 super(cause);
UncheckedExecutionException.java 25 * {@code ExecutionException}, the exception's {@linkplain #getCause() cause}
55 * Creates a new instance with the given detail message and cause.
57 public UncheckedExecutionException(@Nullable String message, @Nullable Throwable cause) {
58 super(message, cause);
62 * Creates a new instance with the given cause.
64 public UncheckedExecutionException(@Nullable Throwable cause) {
65 super(cause);
  /frameworks/base/core/java/android/content/
OperationApplicationException.java 34 public OperationApplicationException(String message, Throwable cause) {
35 super(message, cause);
38 public OperationApplicationException(Throwable cause) {
39 super(cause);
  /frameworks/base/keystore/java/android/security/keystore/
SecureKeyImportUnavailableException.java 38 public SecureKeyImportUnavailableException(String message, Throwable cause) {
39 super(message, cause);
42 public SecureKeyImportUnavailableException(Throwable cause) {
43 super(cause);
StrongBoxUnavailableException.java 40 public StrongBoxUnavailableException(String message, Throwable cause) {
41 super(message, cause);
44 public StrongBoxUnavailableException(Throwable cause) {
45 super(cause);
  /libcore/ojluni/src/main/java/java/util/
InvalidPropertiesFormatException.java 52 * cause.
54 * @param cause the cause (which is saved for later retrieval by the
57 public InvalidPropertiesFormatException(Throwable cause) {
58 super(cause==null ? null : cause.toString());
59 this.initCause(cause);
  /packages/apps/Messaging/src/android/support/v7/mms/
MmsHttpException.java 37 public MmsHttpException(int statusCode, Throwable cause) {
38 super(cause);
42 public MmsHttpException(int statusCode, String message, Throwable cause) {
43 super(message, cause);
  /packages/services/Mms/src/com/android/mms/service/exception/
MmsHttpException.java 37 public MmsHttpException(int statusCode, Throwable cause) {
38 super(cause);
42 public MmsHttpException(int statusCode, String message, Throwable cause) {
43 super(message, cause);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mt/
badsignedimmhigh.s 1 ; Offset greater than #32767 should cause an error.
badsignedimmlow.s 1 ; Immediate lower than #-32769 should cause an error.
badunsignedimmlow.s 1 ; Offset less than #0 should cause an error.
  /tools/metalava/src/main/java/com/android/tools/metalava/doclava1/
ApiParseException.java 30 public ApiParseException(String message, Exception cause) {
31 super(message, cause);
32 if (cause instanceof ApiParseException) {
33 this.line = ((ApiParseException) cause).line;
  /tools/tradefederation/core/src/com/android/tradefed/build/
BuildRetrievalError.java 29 * @param reason a error message describing the cause of the error
37 * cause.
40 * @param cause a {@link Throwable} capturing the original cause of the ProvideBuildError
42 public BuildRetrievalError(String reason, Throwable cause) {
43 super(reason, cause);
48 * cause, and build details.
51 * @param cause a {@link Throwable} capturing the original cause of the ProvideBuildError
54 public BuildRetrievalError(String reason, Throwable cause, IBuildInfo build)
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/device/
DeviceDisconnectedException.java 58 * @param cause the root {@link Throwable} that caused the device to become unavailable.
61 * {@link #DeviceDisconnectedException(String msg, Throwable cause, String serial)} instead
64 public DeviceDisconnectedException(String msg, Throwable cause) {
65 super(msg, cause);
72 * @param cause the root {@link Throwable} that caused the device to become disconnected.
74 public DeviceDisconnectedException(String msg, Throwable cause, String serial) {
75 super(msg, cause, serial);
DeviceUnresponsiveException.java 57 * @param cause the root {@link Throwable} that caused the device to become unavailable.
60 * {@link #DeviceUnresponsiveException(String msg, Throwable cause, String serial)} instead
63 public DeviceUnresponsiveException(String msg, Throwable cause) {
64 super(msg, cause);
71 * @param cause the root {@link Throwable} that caused the device to become unavailable.
73 public DeviceUnresponsiveException(String msg, Throwable cause, String serial) {
74 super(msg, cause, serial);
  /tools/tradefederation/core/src/com/android/tradefed/log/
ITerribleFailureHandler.java 32 * @param cause (Optional) contains the stack trace of the terrible failure
35 public boolean onTerribleFailure(String description, Throwable cause);
  /external/google-tv-pairing-protocol/java/src/com/google/polo/json/
JSONException.java 9 private Throwable cause; field in class:JSONException
21 this.cause = t;
25 return this.cause;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DefaultErrorHandler.java 282 Throwable cause = exception; local
284 // Try to find the locator closest to the cause.
287 if(cause instanceof SAXParseException)
289 locator = new SAXSourceLocator((SAXParseException)cause);
291 else if (cause instanceof TransformerException)
293 SourceLocator causeLocator = ((TransformerException)cause).getLocator();
298 if(cause instanceof TransformerException)
299 cause = ((TransformerException)cause).getCause();
300 else if(cause instanceof SAXException
323 Throwable cause = exception; local
    [all...]
  /external/objenesis/main/src/test/java/org/objenesis/
ObjenesisExceptionTest.java 35 Exception cause = new RuntimeException("test"); local
36 Exception e = new ObjenesisException(cause);
37 assertSame(cause, e.getCause());
38 assertEquals(cause.toString(), e.getMessage());
48 Exception cause = new RuntimeException("test"); local
49 Exception e = new ObjenesisException("msg", cause);
50 assertSame(cause, e.getCause());
  /libcore/ojluni/src/main/java/java/sql/
BatchUpdateException.java 61 * The <code>cause</code> is not initialized, and may subsequently be
90 * The <code>cause</code> is not initialized, and may subsequently be
116 * The <code>cause</code> is not initialized, and may subsequently be
166 * The <code>cause</code> is not initialized, and may subsequently be
179 * a given <code>cause</code>.
184 * <code>cause==null</code> or to <code>cause.toString()</code> if
185 * <code>cause!=null</code>.
186 * @param cause the underlying reason for this <code>SQLException</code>
188 * may be null indicating the cause is non-existent or unknown
    [all...]
  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MediaButtonHelper.java 46 Throwable cause = e.getCause(); local
47 if (cause instanceof RuntimeException) {
48 throw (RuntimeException) cause;
49 } else if (cause instanceof Error) {
50 throw (Error) cause;
71 Throwable cause = e.getCause(); local
72 if (cause instanceof RuntimeException) {
73 throw (RuntimeException) cause;
74 } else if (cause instanceof Error) {
75 throw (Error) cause;
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
ConvergenceException.java 66 * Create an exception with a given root cause.
67 * @param cause the exception or error that caused this exception to be thrown
69 public ConvergenceException(Throwable cause) {
70 super(cause);
74 * Constructs an exception with specified formatted detail message and root cause.
76 * @param cause the exception or error that caused this exception to be thrown
83 public ConvergenceException(Throwable cause, String pattern, Object ... arguments) {
84 this(cause, new DummyLocalizable(pattern), arguments);
88 * Constructs an exception with specified formatted detail message and root cause.
90 * @param cause the exception or error that caused this exception to be throw
    [all...]
MathConfigurationException.java 63 * Create an exception with a given root cause.
64 * @param cause the exception or error that caused this exception to be thrown
66 public MathConfigurationException(Throwable cause) {
67 super(cause);
71 * Constructs an exception with specified formatted detail message and root cause.
73 * @param cause the exception or error that caused this exception to be thrown
78 public MathConfigurationException(Throwable cause, String pattern, Object ... arguments) {
79 this(cause, new DummyLocalizable(pattern), arguments);
83 * Constructs an exception with specified formatted detail message and root cause.
85 * @param cause the exception or error that caused this exception to be throw
    [all...]
FunctionEvaluationException.java 118 * Constructs an exception with specified root cause.
120 * @param cause the exception or error that caused this exception to be thrown
124 public FunctionEvaluationException(Throwable cause, double argument) {
125 super(cause);
130 * Constructs an exception with specified root cause.
132 * @param cause the exception or error that caused this exception to be thrown
136 public FunctionEvaluationException(Throwable cause, double[] argument) {
137 super(cause);
142 * Constructs an exception with specified formatted detail message and root cause.
144 * @param cause the exception or error that caused this exception to be throw
    [all...]
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeConfigurationException.java 41 /** This field is required to store the cause on JDK 1.3 and below. */
49 * no specified detail message and cause.</p>
68 * the specified detail message and cause.</p>
71 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
74 public DatatypeConfigurationException(String message, Throwable cause) {
76 initCauseByReflection(cause);
81 * the specified cause.</p>
83 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or (…)
157 Throwable cause = (Throwable) m1.invoke(this, new Object[] {}); local
    [all...]

Completed in 641 milliseconds

<<11121314151617181920>>