Searched defs:cause (Results 26 - 50 of 241) sorted by relevance

12345678910

/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDeserializationException.java20 * Constructs a new deserialization exception with the specified cause.
22 public DeserializationException(Exception cause) { argument
23 super(cause);
H A DSerializationException.java20 * Constructs a new serialization exception with the specified cause.
22 public SerializationException(Exception cause) { argument
23 super(cause);
/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/google-tv-pairing-protocol/java/src/com/google/polo/exception/
H A DBadSecretException.java28 public BadSecretException(String message, Throwable cause) { argument
29 super(message, cause);
36 public BadSecretException(Throwable cause) { argument
37 super(cause);
H A DNoConfigurationException.java28 public NoConfigurationException(String message, Throwable cause) { argument
29 super(message, cause);
36 public NoConfigurationException(Throwable cause) { argument
37 super(cause);
H A DPoloException.java28 public PoloException(String message, Throwable cause) { argument
29 super(message, cause);
36 public PoloException(Throwable cause) { argument
37 super(cause);
H A DProtocolErrorException.java28 public ProtocolErrorException(String message, Throwable cause) { argument
29 super(message, cause);
36 public ProtocolErrorException(Throwable cause) { argument
37 super(cause);
/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);
/external/javassist/src/main/javassist/bytecode/
H A DBadBytecode.java30 public BadBytecode(String msg, Throwable cause) { argument
31 super(msg, cause);
/external/javassist/src/main/javassist/bytecode/annotation/
H A DNoSuchClassError.java28 public NoSuchClassError(String className, Error cause) { argument
29 super(cause.toString(), cause);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverIOException.java27 public JSilverIOException(IOException cause) { argument
28 super(cause.getMessage());
29 initCause(cause);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCodeGenerationException.java22 private Throwable cause; field in class:CodeGenerationException
24 public CodeGenerationException(Throwable cause) { argument
25 super(cause.getClass().getName() + "-->" + cause.getMessage());
26 this.cause = cause;
30 return cause;
/external/nist-sip/java/javax/sip/header/
H A DTooManyHopsException.java12 public TooManyHopsException(String message, Throwable cause) { argument
13 super(message, cause);
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthException.java38 * @param cause
40 public OAuthException(Throwable cause) { argument
41 super(cause);
46 * @param cause
48 public OAuthException(String message, Throwable cause) { argument
49 super(message, cause);
/external/objenesis/main/src/org/objenesis/
H A DObjenesisException.java40 * @param cause Wrapped exception. The message will be the one of the cause.
42 public ObjenesisException(Throwable cause) { argument
43 super(cause == null ? null : cause.toString());
45 initCause(cause);
51 * @param cause Wrapped exception
53 public ObjenesisException(String msg, Throwable cause) { argument
56 initCause(cause);
/external/smack/src/com/kenai/jbosh/
H A DBOSHException.java41 * message and the underlying root cause of the exceptional condition.
44 * @param cause root cause or instigator of the condition
46 public BOSHException(final String msg, final Throwable cause) { argument
47 super(msg, cause);
/external/smack/src/org/xbill/DNS/
H A DWireParseException.java26 WireParseException(String s, Throwable cause) { argument
28 initCause(cause);
/external/ant-glob/src/org/apache/tools/ant/
H A DBuildException.java46 * a root cause.
49 * Should not be <code>null</code> unless a cause is specified.
50 * @param cause The exception that might have caused this one.
53 public BuildException(String message, Throwable cause) { argument
55 initCause(cause);
59 * Constructs an exception with the given exception as a root cause.
61 * @param cause The exception that might have caused this one.
64 public BuildException(Throwable cause) { argument
65 super(cause);
/external/apache-http/src/org/apache/commons/logging/
H A DLogConfigurationException.java60 * Construct a new exception with the specified cause and a derived
63 * @param cause The underlying cause
65 public LogConfigurationException(Throwable cause) { argument
67 this((cause == null) ? null : cause.toString(), cause);
73 * Construct a new exception with the specified detail message and cause.
76 * @param cause The underlying cause
78 LogConfigurationException(String message, Throwable cause) argument
89 protected Throwable cause = null; field in class:LogConfigurationException
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthenticationException.java68 * Creates a new AuthenticationException 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 AuthenticationException(String message, Throwable cause) { argument
75 super(message, cause);

Completed in 446 milliseconds

12345678910