/libcore/luni/src/main/java/java/security/ |
NoSuchAlgorithmException.java | 54 public NoSuchAlgorithmException(String message, Throwable cause) { 65 public NoSuchAlgorithmException(Throwable cause) {
|
ProviderException.java | 56 public ProviderException(String message, Throwable cause) { 66 public ProviderException(Throwable cause) {
|
SignatureException.java | 55 public SignatureException(String message, Throwable cause) { 66 public SignatureException(Throwable cause) {
|
/libcore/luni/src/main/java/java/security/cert/ |
CRLException.java | 53 public CRLException(String message, Throwable cause) { 63 public CRLException(Throwable cause) {
|
CertPathBuilderException.java | 38 public CertPathBuilderException(String msg, Throwable cause) { 48 public CertPathBuilderException(Throwable cause) {
|
CertStoreException.java | 38 public CertStoreException(String msg, Throwable cause) { 48 public CertStoreException(Throwable cause) {
|
CertificateEncodingException.java | 54 public CertificateEncodingException(String message, Throwable cause) { 65 public CertificateEncodingException(Throwable cause) {
|
CertificateException.java | 54 public CertificateException(String message, Throwable cause) { 64 public CertificateException(Throwable cause) {
|
CertificateParsingException.java | 53 public CertificateParsingException(String message, Throwable cause) { 64 public CertificateParsingException(Throwable cause) {
|
/libcore/luni/src/main/java/java/security/spec/ |
InvalidKeySpecException.java | 58 public InvalidKeySpecException(String message, Throwable cause) { 68 public InvalidKeySpecException(Throwable cause) {
|
/libcore/luni/src/main/java/java/util/ |
ConcurrentModificationException.java | 56 public ConcurrentModificationException(String detailMessage, Throwable cause) { 65 public ConcurrentModificationException(Throwable cause) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ExecutionException.java | 24 * initialized by a call to {@link #initCause(Throwable) initCause}. 31 * initialized by a call to {@link #initCause(Throwable) initCause}. 47 public ExecutionException(String message, Throwable cause) { 60 public ExecutionException(Throwable cause) {
|
RejectedExecutionException.java | 22 * initialized by a call to {@link #initCause(Throwable) initCause}. 30 * #initCause(Throwable) initCause}. 46 public RejectedExecutionException(String message, Throwable cause) { 59 public RejectedExecutionException(Throwable cause) {
|
/libcore/luni/src/main/java/java/util/prefs/ |
InvalidPreferencesFormatException.java | 42 * a detailed exception message and a nested {@code Throwable}. 47 * the nested {@code Throwable}. 49 public InvalidPreferencesFormatException (String s, Throwable t) { 55 * a nested {@code Throwable}. 58 * the nested {@code Throwable}. 60 public InvalidPreferencesFormatException (Throwable t) {
|
/libcore/luni/src/main/java/javax/net/ssl/ |
SSLException.java | 46 public SSLException(String message, Throwable cause) { 57 public SSLException(Throwable cause) {
|
SSLHandshakeException.java | 39 public SSLHandshakeException(Throwable cause) { 47 public SSLHandshakeException(String reason, Throwable cause) {
|
/libcore/luni/src/main/java/libcore/util/ |
EmptyArray.java | 31 public static final Throwable[] THROWABLE = new Throwable[0];
|
/packages/apps/Email/src/org/apache/commons/io/ |
IOExceptionWithCause.java | 23 * Subclasses IOException with the {@link Throwable} constructors missing before Java 6. If you are using Java 6,
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
49 public IOExceptionWithCause(String message, Throwable cause) {
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable.
64 public IOExceptionWithCause(Throwable cause) {
|
/frameworks/base/tests/WebViewTests/src/com/android/webviewtests/ |
JavaBridgeArrayTest.java | 109 public void testArrayLength() throws Throwable { 118 public void testPassNull() throws Throwable { 123 public void testPassUndefined() throws Throwable { 128 public void testPassEmptyArray() throws Throwable { 135 public void testPassArrayToStringMethod() throws Throwable { 143 public void testPassArrayToNonStringNonArrayMethod() throws Throwable { 149 public void testPassNonArrayToArrayMethod() throws Throwable { 155 public void testObjectWithLengthProperty() throws Throwable { 164 public void testNonNumericLengthProperty() throws Throwable { 171 public void testLengthOutOfBounds() throws Throwable { [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_wide/ |
Test_move_wide.java | 48 } catch (Throwable t) { 61 } catch (Throwable t) { 74 } catch (Throwable t) { 87 } catch (Throwable t) { 102 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/verify/b2/ |
Test_b2.java | 32 } catch (Throwable t) { 45 } catch (Throwable t) { 58 } catch (Throwable t) { 71 } catch (Throwable t) { 84 } catch (Throwable t) {
|
/external/junit/src/org/junit/internal/runners/statements/ |
RunAfters.java | 27 public void evaluate() throws Throwable { 28 List<Throwable> errors = new ArrayList<Throwable>(); 31 } catch (Throwable e) { 37 } catch (Throwable e) {
|
/external/mockito/src/org/mockito/internal/stubbing/answers/ |
ThrowsException.java | 17 private final Throwable throwable;
field in class:ThrowsException 20 public ThrowsException(Throwable throwable) {
21 this.throwable = throwable;
24 public Object answer(InvocationOnMock invocation) throws Throwable {
25 if (new MockUtil().isMock(throwable)) {
26 throw throwable;
28 Throwable t = throwable.fillInStackTrace(); [all...] |
/external/smack/src/org/apache/harmony/javax/security/sasl/ |
SaslException.java | 29 private Throwable _exception; 39 public SaslException(String detail, Throwable ex) { 48 public Throwable getCause() { 53 public Throwable initCause(Throwable cause) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_result/ |
Test_move_result.java | 40 } catch (Throwable t) { 54 } catch (Throwable t) { 67 } catch (Throwable t) { 83 } catch (Throwable t) { 97 } catch (Throwable t) { 111 } catch (Throwable t) { 124 } catch (Throwable t) {
|