Searched defs:cause (Results 1 - 25 of 130) sorted by relevance

123456

/external/chromium/chrome/browser/sync/engine/
H A Dsyncer_types.cc9 SyncEngineEvent::SyncEngineEvent(EventCause cause) : what_happened(cause), argument
/external/nist-sip/java/javax/sip/
H A DDialogDoesNotExistException.java11 public DialogDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DInvalidArgumentException.java11 public InvalidArgumentException(String message, Throwable cause) { argument
12 super(message, cause);
H A DObjectInUseException.java11 public ObjectInUseException(String message, Throwable cause) { argument
12 super(message, cause);
H A DPeerUnavailableException.java11 public PeerUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DProviderDoesNotExistException.java11 public ProviderDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DSipException.java11 public SipException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionAlreadyExistsException.java11 public TransactionAlreadyExistsException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionDoesNotExistException.java11 public TransactionDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionUnavailableException.java11 public TransactionUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransportNotSupportedException.java11 public TransportNotSupportedException(String message, Throwable cause) { argument
12 super(message, cause);
/external/apache-http/src/org/apache/http/
H A DHttpException.java64 * Creates a new HttpException with the specified detail message and cause.
67 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
68 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
70 public HttpException(final String message, final Throwable cause) { argument
72 ExceptionUtils.initCause(this, cause);
H A DMethodNotSupportedException.java58 * Creates a new MethodNotSupportedException with the specified detail message and cause.
61 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
62 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
64 public MethodNotSupportedException(final String message, final Throwable cause) { argument
65 super(message, cause);
H A DProtocolException.java63 * Creates a new ProtocolException with the specified detail message and cause.
66 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
67 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
69 public ProtocolException(String message, Throwable cause) { argument
70 super(message, cause);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1Exception.java8 private Throwable cause; field in class:ASN1Exception
15 ASN1Exception(String message, Throwable cause) argument
18 this.cause = cause;
23 return cause;
H A DASN1ParsingException.java6 private Throwable cause; field in class:ASN1ParsingException
13 ASN1ParsingException(String message, Throwable cause) argument
16 this.cause = cause;
21 return cause;
/external/bouncycastle/src/main/java/org/bouncycastle/x509/
H A DExtCertificateEncodingException.java8 Throwable cause; field in class:ExtCertificateEncodingException
10 ExtCertificateEncodingException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/chromium/chrome/browser/net/
H A Dchrome_cookie_notification_details.h15 net::CookieMonster::Delegate::ChangeCause cause)
18 cause(cause) {
23 net::CookieMonster::Delegate::ChangeCause cause; member in struct:ChromeCookieDetails
13 ChromeCookieDetails(const net::CookieMonster::CanonicalCookie* cookie_copy, bool is_removed, net::CookieMonster::Delegate::ChangeCause cause) argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DDexException.java28 public DexException(Throwable cause) { argument
29 super(cause);
H A DMutabilityException.java28 public MutabilityException(Throwable cause) { argument
29 super(cause);
32 public MutabilityException(String message, Throwable cause) { argument
33 super(message, cause);
/external/emma/core/java12/com/vladium/emma/
H A DEMMAException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
57 public EMMAException (final Throwable cause) argument
59 super (cause);
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause th
68 EMMAException(final String message, final Throwable cause) argument
82 EMMAException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
H A DEMMARuntimeException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
57 public EMMARuntimeException (final Throwable cause) argument
59 super (cause);
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause th
68 EMMARuntimeException(final String message, final Throwable cause) argument
82 EMMARuntimeException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAsynchronousComputationException.java31 * Creates a new instance with the given cause.
33 public AsynchronousComputationException(Throwable cause) { argument
34 super(cause);
H A DComputationException.java30 * Creates a new instance with the given cause.
32 public ComputationException(Throwable cause) { argument
33 super(cause);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DExecutionException.java31 public ExecutionException(String message, Throwable cause) { argument
32 super(message, cause);
35 public ExecutionException(Throwable cause) { argument
36 super(cause);

Completed in 2539 milliseconds

123456