/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
ASN1Exception.java | 8 private Throwable cause; 15 ASN1Exception(String message, Throwable cause) 21 public Throwable getCause()
|
ASN1ParsingException.java | 6 private Throwable cause; 13 public ASN1ParsingException(String message, Throwable cause) 19 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
CryptoException.java | 9 private Throwable cause; 33 * @param cause the throwable that was the underlying cause. 37 Throwable cause) 44 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
ExtendedInvalidKeySpecException.java | 8 private Throwable cause; 10 public ExtendedInvalidKeySpecException(String msg, Throwable cause) 17 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/ |
ExtCRLException.java | 8 Throwable cause; 10 ExtCRLException(String message, Throwable cause) 16 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
ExtCRLException.java | 8 Throwable cause; 10 ExtCRLException(String message, Throwable cause) 16 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/ |
PemGenerationException.java | 8 private Throwable cause; 10 public PemGenerationException(String message, Throwable cause) 21 public Throwable getCause()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
ExtCertificateEncodingException.java | 8 Throwable cause; 10 ExtCertificateEncodingException(String message, Throwable cause) 16 public Throwable getCause()
|
/external/junit/src/org/junit/internal/runners/statements/ |
Fail.java | 7 private final Throwable fError; 9 public Fail(Throwable e) { 14 public void evaluate() throws Throwable {
|
/libcore/luni/src/main/java/java/lang/ |
Error.java | 26 * @see Throwable 30 public class Error extends Throwable { 57 * @param throwable 60 public Error(String detailMessage, Throwable throwable) { 61 super(detailMessage, throwable); 68 * @param throwable 71 public Error(Throwable throwable) { 72 super(throwable); [all...] |
Exception.java | 26 * @see Throwable 30 public class Exception extends Throwable { 56 * @param throwable 59 public Exception(String detailMessage, Throwable throwable) { 60 super(detailMessage, throwable); 67 * @param throwable 70 public Exception(Throwable throwable) { 71 super(throwable); [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/format/f1/ |
Test_f1.java | 32 } catch (Throwable t) { 45 } catch (Throwable t) { 58 } catch (Throwable t) { 71 } catch (Throwable t) { 84 } catch (Throwable t) { 97 } catch (Throwable t) { 110 } catch (Throwable t) { 123 } catch (Throwable t) { 136 } catch (Throwable t) { 149 // } catch (Throwable t) [all...] |
/art/runtime/mirror/ |
throwable.h | 29 // C++ mirror of java.lang.Throwable 30 class MANAGED Throwable : public Object { 33 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), new_detail_message, false); 36 return GetFieldObject<String*>(OFFSET_OF_OBJECT_MEMBER(Throwable, detail_message_), false); 43 void SetCause(Throwable* cause) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_); 56 return GetFieldObject<Object*>(OFFSET_OF_OBJECT_MEMBER(Throwable, stack_state_), true); 60 Throwable* cause_; 69 DISALLOW_IMPLICIT_CONSTRUCTORS(Throwable);
|
throwable.cc | 17 #include "throwable.h" 33 Class* Throwable::java_lang_Throwable_ = NULL; 35 void Throwable::SetCause(Throwable* cause) { 38 Throwable* current_cause = GetFieldObject<Throwable*>(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), 41 SetFieldObject(OFFSET_OF_OBJECT_MEMBER(Throwable, cause_), cause, false); 44 bool Throwable::IsCheckedException() const { 51 std::string Throwable::Dump() const [all...] |
/external/junit/src/org/junit/runners/model/ |
MultipleFailureException.java | 10 * Collects multiple {@code Throwable}s into one exception. 15 private final List<Throwable> fErrors; 17 public MultipleFailureException(List<Throwable> errors) { 18 fErrors= new ArrayList<Throwable>(errors); 21 public List<Throwable> getFailures() { 29 for (Throwable e : fErrors) { 42 * @throws Throwable if the list is not empty 45 public static void assertEmpty(List<Throwable> errors) throws Throwable {
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
ClusterException.java | 64 public final Collection<? extends Throwable> exceptions; 66 private ClusterException(Collection<? extends Throwable> exceptions) { 70 ArrayList<Throwable> temp = new ArrayList<Throwable>(); 78 public static RuntimeException create(Throwable... exceptions) { 79 ArrayList<Throwable> temp = new ArrayList<Throwable>(); 80 for (Throwable exception : exceptions) { 107 public static RuntimeException create(Collection<? extends Throwable> exceptions) { 113 Throwable temp = exceptions.iterator().next() [all...] |
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move/ |
Test_move.java | 40 } catch (Throwable t) { 53 } catch (Throwable t) { 66 } catch (Throwable t) { 79 } catch (Throwable t) { 92 } catch (Throwable t) { 107 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_from16/ |
Test_move_from16.java | 39 } catch (Throwable t) { 52 } catch (Throwable t) { 65 } catch (Throwable t) { 78 } catch (Throwable t) { 91 } catch (Throwable t) { 106 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_object/ |
Test_move_object.java | 41 } catch (Throwable t) { 54 } catch (Throwable t) { 67 } catch (Throwable t) { 80 } catch (Throwable t) { 93 } catch (Throwable t) { 108 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_object_16/ |
Test_move_object_16.java | 40 } catch (Throwable t) { 53 } catch (Throwable t) { 66 } catch (Throwable t) { 79 } catch (Throwable t) { 92 } catch (Throwable t) { 107 } catch (Throwable t) {
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/move_object_from16/ |
Test_move_object_from16.java | 41 } catch (Throwable t) { 54 } catch (Throwable t) { 67 } catch (Throwable t) { 80 } catch (Throwable t) { 93 } catch (Throwable t) { 108 } catch (Throwable t) {
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
IOExceptionTest.java | 56 * java.lang.Throwable) 60 // Test for constructor java.io.IOException(java.lang.String, java.lang.Throwable) 63 "A dummy IOException", new Throwable("A dummy Throwable")); //$NON-NLS-1$//$NON-NLS-2$ 68 "A dummy error", new Throwable("Some error message")); //$NON-NLS-1$ //$NON-NLS-2$ 78 * @tests java.io.IOException#IOException(java.lang.Throwable) 82 // Test for constructor java.io.IOException(java.lang.Throwable) 83 Throwable cause = new Throwable("A dummy Throwable"); //$NON-NLS-1 [all...] |
/external/apache-http/src/org/apache/commons/logging/ |
Log.java | 157 public void trace(Object message, Throwable t); 174 public void debug(Object message, Throwable t); 191 public void info(Object message, Throwable t); 208 public void warn(Object message, Throwable t); 225 public void error(Object message, Throwable t); 242 public void fatal(Object message, Throwable t);
|
/external/apache-http/src/org/apache/commons/logging/impl/ |
NoOpLog.java | 42 public void trace(Object message, Throwable t) { } 46 public void debug(Object message, Throwable t) { } 50 public void info(Object message, Throwable t) { } 54 public void warn(Object message, Throwable t) { } 58 public void error(Object message, Throwable t) { } 62 public void fatal(Object message, Throwable t) { }
|
/external/javassist/src/main/javassist/ |
CannotCompileException.java | 24 private Throwable myCause; 27 * Gets the cause of this throwable. 30 public Throwable getCause() { 35 * Initializes the cause of this throwable. 38 public synchronized Throwable initCause(Throwable cause) { 72 public CannotCompileException(Throwable e) { 85 public CannotCompileException(String msg, Throwable e) {
|