HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 76 - 100 of 262) sorted by null

1 2 34 5 6 7 8 91011

  /libcore/luni/src/main/java/java/sql/
SQLNonTransientConnectionException.java 23 * retried without the cause of the failure being corrected.
85 * is set to the null if cause == null or cause.toString() if
86 * cause!=null,and the cause Throwable object is set to the given cause
89 * @param cause
93 public SQLNonTransientConnectionException(Throwable cause) {
94 super(cause);
99 * is set to the given and the cause Throwable object is set to the give
    [all...]
SQLNonTransientException.java 77 * the null if cause == null or cause.toString() if cause!=null,and the
78 * cause Throwable object is set to the given cause Throwable object.
80 * @param cause
84 public SQLNonTransientException(Throwable cause) {
85 super(cause);
90 * the given and the cause Throwable object is set to the given cause
    [all...]
SQLRecoverableException.java 77 * the null if cause == null or cause.toString() if cause!=null,and the
78 * cause Throwable object is set to the given cause Throwable object.
80 * @param cause
84 public SQLRecoverableException(Throwable cause) {
85 super(cause);
90 * the given and the cause Throwable object is set to the given cause
    [all...]
SQLSyntaxErrorException.java 77 * the null if cause == null or cause.toString() if cause!=null,and the
78 * cause Throwable object is set to the given cause Throwable object.
80 * @param cause
84 public SQLSyntaxErrorException(Throwable cause) {
85 super(cause);
90 * the given and the cause Throwable object is set to the given cause
    [all...]
SQLTimeoutException.java 76 * null if cause == null or cause.toString() if cause!=null,and the cause
77 * Throwable object is set to the given cause Throwable object.
79 * @param cause
83 public SQLTimeoutException(Throwable cause) {
84 super(cause);
89 * given and the cause Throwable object is set to the given cause Throwabl
    [all...]
SQLTransactionRollbackException.java 78 * set to the null if cause == null or cause.toString() if cause!=null,and
79 * the cause Throwable object is set to the given cause Throwable object.
81 * @param cause
85 public SQLTransactionRollbackException(Throwable cause) {
86 super(cause);
91 * set to the given and the cause Throwable object is set to the given cause
    [all...]
SQLTransientConnectionException.java 78 * set to the null if cause == null or cause.toString() if cause!=null,and
79 * the cause Throwable object is set to the given cause Throwable object.
81 * @param cause
85 public SQLTransientConnectionException(Throwable cause) {
86 super(cause);
91 * set to the given and the cause Throwable object is set to the given cause
    [all...]
SQLTransientException.java 76 * null if cause == null or cause.toString() if cause!=null,and the cause
77 * Throwable object is set to the given cause Throwable object.
79 * @param cause
83 public SQLTransientException(Throwable cause) {
84 super(cause);
89 * given and the cause Throwable object is set to the given cause Throwabl
    [all...]
BatchUpdateException.java 58 * null if cause == null otherwise to cause.toString(), and the cause
59 * Throwable object is set to the given cause Throwable object.
61 * @param cause the Throwable object for the underlying reason this SQLException
65 public BatchUpdateException(Throwable cause) {
66 this(null, cause);
71 * null if cause == null otherwise to cause.toString(), and the cause
    [all...]
  /libcore/luni/src/main/java/java/util/
ServiceConfigurationError.java 36 * Constructs a new error with the given detail message and cause.
38 * @param cause the cause, null
40 public ServiceConfigurationError(String message, Throwable cause) {
41 super(message, cause);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpressionException.java 39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathExpressionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathExpressionException(Throwable cause) {
59 super(cause);
XPathFactoryConfigurationException.java 39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFactoryConfigurationException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFactoryConfigurationException(Throwable cause) {
59 super(cause);
XPathFunctionException.java 39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFunctionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFunctionException(Throwable cause) {
59 super(cause);
  /packages/apps/Mms/src/com/android/mms/
ContentRestrictionException.java 34 public ContentRestrictionException(Exception cause) {
35 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);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
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...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkCreationException.java 29 public ApkCreationException(Throwable cause, String format, Object... args) {
30 super(String.format(format, args), cause); local
33 public ApkCreationException(Throwable cause) {
34 super(cause);
SealedApkException.java 29 public SealedApkException(Throwable cause, String format, Object... args) {
30 super(String.format(format, args), cause); local
33 public SealedApkException(Throwable cause) {
34 super(cause);
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
EncryptionException.java 8 private Throwable cause; field in class:EncryptionException
18 this.cause = ex;
23 return cause;
  /libcore/luni/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...]
  /libcore/luni/src/main/java/java/security/cert/
CertPathValidatorException.java 46 * message , cause, certification path and certificate index in the
51 * @param cause
52 * the cause.
64 public CertPathValidatorException(String msg, Throwable cause,
66 super(msg, cause);
80 * message and cause.
84 * @param cause
85 * the cause why the path could not be validated.
87 public CertPathValidatorException(String msg, Throwable cause) {
88 super(msg, cause);
    [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>
69 * the specified detail message and cause.</p>
72 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
75 public DatatypeConfigurationException(String message, Throwable cause) {
77 initCauseByReflection(cause);
82 * the specified cause.</p>
84 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or (…)
158 Throwable cause = (Throwable) m1.invoke(this, new Object[] {}); local
    [all...]
  /dalvik/dx/src/com/android/dx/util/
ExceptionWithContext.java 65 * @param cause {@code null-ok;} exception that caused this one
67 public ExceptionWithContext(Throwable cause) {
68 this(null, cause);
75 * @param cause {@code null-ok;} exception that caused this one
77 public ExceptionWithContext(String message, Throwable cause) {
79 (cause != null) ? cause.getMessage() : null,
80 cause);
82 if (cause instanceof ExceptionWithContext) {
83 String ctx = ((ExceptionWithContext) cause).context.toString()
    [all...]
  /external/apache-http/src/org/apache/http/
HttpException.java 64 * 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) {
72 ExceptionUtils.initCause(this, cause);
  /external/apache-http/src/org/apache/http/auth/
AuthenticationException.java 63 * Creates a new AuthenticationException 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 AuthenticationException(String message, Throwable cause) {
70 super(message, cause);

Completed in 378 milliseconds

1 2 34 5 6 7 8 91011