what-the-bank/sources/org/bouncycastle/util/test/TestFailedException.java

15 lines
333 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.util.test;
/* loaded from: classes6.dex */
public class TestFailedException extends RuntimeException {
private TestResult _result;
public TestResult getResult() {
return this._result;
}
public TestFailedException(TestResult testResult) {
this._result = testResult;
}
}