Searched defs:cause (Results 51 - 75 of 241) sorted by relevance

12345678910

/external/apache-http/src/org/apache/http/auth/
H A DInvalidCredentialsException.java67 * Creates a new InvalidCredentialsException with the specified detail message and cause.
70 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
71 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
73 public InvalidCredentialsException(String message, Throwable cause) { argument
74 super(message, cause);
H A DMalformedChallengeException.java69 * Creates a new MalformedChallengeException with the specified detail message and cause.
72 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
73 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
75 public MalformedChallengeException(String message, Throwable cause) { argument
76 super(message, cause);
/external/apache-http/src/org/apache/http/client/
H A DCircularRedirectException.java66 * Creates a new CircularRedirectException with the specified detail message and cause.
69 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
70 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
72 public CircularRedirectException(String message, Throwable cause) { argument
73 super(message, cause);
H A DClientProtocolException.java55 public ClientProtocolException(Throwable cause) { argument
56 initCause(cause);
59 public ClientProtocolException(String message, Throwable cause) { argument
61 initCause(cause);
H A DRedirectException.java68 * Creates a new RedirectException with the specified detail message and cause.
71 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
72 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
74 public RedirectException(String message, Throwable cause) { argument
75 super(message, cause);
/external/apache-http/src/org/apache/http/conn/
H A DHttpHostConnectException.java52 public HttpHostConnectException(final HttpHost host, final ConnectException cause) { argument
55 initCause(cause);
/external/apache-http/src/org/apache/http/cookie/
H A DMalformedCookieException.java70 * Creates a new MalformedCookieException with the specified detail message and cause.
73 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
74 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
76 public MalformedCookieException(String message, Throwable cause) { argument
77 super(message, cause);
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngineException.java65 * Creates a new NTLMEngineException with the specified detail message and cause.
68 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
69 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
71 public NTLMEngineException(String message, Throwable cause) { argument
72 super(message, cause);
H A DUnsupportedDigestAlgorithmException.java67 * Creates a new UnsupportedAuthAlgoritmException with the specified detail message and cause.
70 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
71 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
73 public UnsupportedDigestAlgorithmException(String message, Throwable cause) { argument
74 super(message, cause);
/external/apache-http/src/org/apache/http/util/
H A DExceptionUtils.java72 * If we're running on JDK 1.4 or later, initialize the cause for the given throwable.
75 * @param cause The cause of the throwable.
77 public static void initCause(Throwable throwable, Throwable cause) { argument
80 INIT_CAUSE_METHOD.invoke(throwable, new Object[] { cause });
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DExtendedInvalidKeySpecException.java8 private Throwable cause; field in class:ExtendedInvalidKeySpecException
10 public ExtendedInvalidKeySpecException(String msg, Throwable cause) argument
14 this.cause = cause;
19 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DExtCRLException.java8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DExtCRLException.java8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DDecoderException.java6 private Throwable cause; field in class:DecoderException
8 DecoderException(String msg, Throwable cause) argument
12 this.cause = cause;
17 return cause;
H A DEncoderException.java6 private Throwable cause; field in class:EncoderException
8 EncoderException(String msg, Throwable cause) argument
12 this.cause = cause;
17 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemGenerationException.java8 private Throwable cause; field in class:PemGenerationException
10 public PemGenerationException(String message, Throwable cause) argument
13 this.cause = cause;
23 return cause;
/external/chromium_org/chrome/browser/net/
H A Dchrome_cookie_notification_details.h18 net::CookieMonster::Delegate::ChangeCause cause)
21 cause(cause) {
26 net::CookieMonster::Delegate::ChangeCause cause; member in struct:ChromeCookieDetails
16 ChromeCookieDetails(const net::CanonicalCookie* cookie_copy, bool is_removed, net::CookieMonster::Delegate::ChangeCause cause) argument
/external/doclava/src/com/google/doclava/apicheck/
H A DApiParseException.java30 public ApiParseException(String message, Exception cause) { argument
31 super(message, cause);
32 if (cause instanceof ApiParseException) {
33 this.line = ((ApiParseException)cause).line;
/external/droiddriver/src/com/google/android/droiddriver/exceptions/
H A DActionException.java28 public ActionException(String message, Throwable cause) { argument
29 super(message, cause);
H A DDroidDriverException.java30 public DroidDriverException(Throwable cause) { argument
31 super(cause);
34 public DroidDriverException(String message, Throwable cause) { argument
35 super(message, cause);
H A DElementNotFoundException.java30 public ElementNotFoundException(Finder finder, Throwable cause) { argument
31 super(failMessage(finder), cause);
38 public ElementNotFoundException(String message, Throwable cause) { argument
39 super(message, cause);
H A DTimeoutException.java29 public TimeoutException(Throwable cause) { argument
30 super(cause);
33 public TimeoutException(String message, Throwable cause) { argument
34 super(message, cause);
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/
H A DJSONException.java9 private Throwable cause; field in class:JSONException
21 this.cause = t;
25 return this.cause;
/external/guava/guava/src/com/google/common/util/concurrent/
H A DExecutionError.java24 * with {@code ExecutionException}, the error's {@linkplain #getCause() cause}
25 * 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(String message, Error cause) { argument
53 super(message, cause);
57 * Creates a new instance with the given cause.
59 public ExecutionError(Error cause) { argument
60 super(cause);
H A DUncheckedExecutionException.java24 * {@code ExecutionException}, the exception's {@linkplain #getCause() cause}
55 * Creates a new instance with the given detail message and cause.
57 public UncheckedExecutionException(String message, Throwable cause) { argument
58 super(message, cause);
62 * Creates a new instance with the given cause.
64 public UncheckedExecutionException(Throwable cause) { argument
65 super(cause);

Completed in 313 milliseconds

12345678910