/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/util/io/pem/ |
PemGenerationException.java | 8 private Throwable cause; 10 public PemGenerationException(String message, Throwable cause) 21 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 {
|
/external/mockito/src/org/mockito/internal/exceptions/ |
ExceptionIncludingMockitoWarnings.java | 10 public ExceptionIncludingMockitoWarnings(String message, Throwable throwable) {
11 super(message, throwable);
|
/external/mockito/src/org/mockito/internal/stubbing/ |
BaseStubbing.java | 30 private OngoingStubbing<T> thenThrow(Throwable throwable) {
31 return thenAnswer(new ThrowsException(throwable));
34 public OngoingStubbing<T> thenThrow(Throwable... throwables) {
36 thenThrow((Throwable) null);
39 for (Throwable t: throwables) {
49 private OngoingStubbing<T> thenThrow(Class<? extends Throwable> throwableClass) {
53 public OngoingStubbing<T> thenThrow(Class<? extends Throwable>... throwableClasses) {
55 thenThrow((Throwable) null);
58 for (Class<? extends Throwable> t: throwableClasses) { [all...] |
/external/mockito/src/org/mockito/internal/listeners/ |
NotifiedMethodInvocationReport.java | 17 private Throwable throwable;
field in class:NotifiedMethodInvocationReport 37 * @param throwable Tha throwable raised by the method invocation
39 public NotifiedMethodInvocationReport(Invocation invocation, Throwable throwable) {
41 this.throwable = throwable;
52 public Throwable getThrowable() {
53 return throwable;
[all...] |
/frameworks/base/core/java/android/view/ |
InflateException.java | 28 public InflateException(String detailMessage, Throwable throwable) { 29 super(detailMessage, throwable); 36 public InflateException(Throwable throwable) { 37 super(throwable);
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/ |
OperatorCreationException.java | 6 public OperatorCreationException(String msg, Throwable cause)
|
/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/junit/src/org/junit/internal/runners/ |
InitializationError.java | 13 private final List<Throwable> fErrors; 15 public InitializationError(List<Throwable> errors) { 19 public InitializationError(Throwable... errors) { 27 public List<Throwable> getCauses() {
|
/external/mockito/src/org/mockito/internal/exceptions/stacktrace/ |
ConditionalStackTraceFilter.java | 19 public void filter(Throwable throwable) { 23 StackTraceElement[] filtered = filter.filter(throwable.getStackTrace(), true); 24 throwable.setStackTrace(filtered);
|
/external/nist-sip/java/javax/sip/ |
DialogDoesNotExistException.java | 11 public DialogDoesNotExistException(String message, Throwable cause) {
|
InvalidArgumentException.java | 11 public InvalidArgumentException(String message, Throwable cause) {
|
ObjectInUseException.java | 11 public ObjectInUseException(String message, Throwable cause) {
|
PeerUnavailableException.java | 11 public PeerUnavailableException(String message, Throwable cause) {
|
ProviderDoesNotExistException.java | 11 public ProviderDoesNotExistException(String message, Throwable cause) {
|
SipException.java | 11 public SipException(String message, Throwable cause) {
|
TransactionAlreadyExistsException.java | 11 public TransactionAlreadyExistsException(String message, Throwable cause) {
|
TransactionDoesNotExistException.java | 11 public TransactionDoesNotExistException(String message, Throwable cause) {
|
TransactionUnavailableException.java | 11 public TransactionUnavailableException(String message, Throwable cause) {
|
TransportNotSupportedException.java | 11 public TransportNotSupportedException(String message, Throwable cause) {
|
/ndk/tests/device/issue22165-typeinfo/jni/ |
throwable.cpp | 4 #include "throwable.h"
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldThrowableTest.java | 26 Throwable thr = new Throwable(message, npe); 30 thr = new Throwable(null, npe); 34 thr = new Throwable(message, null); 42 Throwable thr = new Throwable(npe); 46 thr = new Throwable((Throwable) null); 52 Throwable e = new Throwable(testMessage) [all...] |
/libcore/dom/src/test/java/org/w3c/domts/ |
JunitTestCases.java | 27 private void runDomTest(String name) throws Throwable { 33 public void test_level1_core_attrcreatedocumentfragment() throws Throwable { 37 public void test_level1_core_attrcreatetextnode() throws Throwable { 41 public void test_level1_core_attrcreatetextnode2() throws Throwable { 45 public void test_level1_core_attreffectivevalue() throws Throwable { 49 public void test_level1_core_attrname() throws Throwable { 53 public void test_level1_core_attrnextsiblingnull() throws Throwable { 57 public void test_level1_core_attrparentnodenull() throws Throwable { 61 public void test_level1_core_attrprevioussiblingnull() throws Throwable { 65 public void test_level1_core_attrspecifiedvalue() throws Throwable { [all...] |