15 lines
333 B
Java
15 lines
333 B
Java
|
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;
|
||
|
}
|
||
|
}
|