File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
core/src/test/java/org/bouncycastle/crypto/test Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 11
11
import org .bouncycastle .crypto .digests .SHA3Digest ;
12
12
import org .bouncycastle .test .TestResourceFinder ;
13
13
import org .bouncycastle .util .Arrays ;
14
+ import org .bouncycastle .util .Exceptions ;
14
15
import org .bouncycastle .util .encoders .Hex ;
15
16
16
17
/**
@@ -68,7 +69,7 @@ public void performTest()
68
69
}
69
70
catch (Exception e )
70
71
{
71
- throw new IllegalStateException (e .toString (), e );
72
+ throw Exceptions . illegalStateException (e .toString (), e );
72
73
}
73
74
}
74
75
Original file line number Diff line number Diff line change 11
11
import org .bouncycastle .crypto .digests .SHAKEDigest ;
12
12
import org .bouncycastle .test .TestResourceFinder ;
13
13
import org .bouncycastle .util .Arrays ;
14
+ import org .bouncycastle .util .Exceptions ;
14
15
import org .bouncycastle .util .encoders .Hex ;
15
16
16
17
/**
@@ -68,7 +69,7 @@ public void performTest()
68
69
}
69
70
catch (Exception e )
70
71
{
71
- throw new IllegalStateException (e .toString (), e );
72
+ throw Exceptions . illegalStateException (e .toString (), e );
72
73
}
73
74
}
74
75
You can’t perform that action at this time.
0 commit comments