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 1111import org .bouncycastle .crypto .digests .SHA3Digest ;
1212import org .bouncycastle .test .TestResourceFinder ;
1313import org .bouncycastle .util .Arrays ;
14+ import org .bouncycastle .util .Exceptions ;
1415import org .bouncycastle .util .encoders .Hex ;
1516
1617/**
@@ -68,7 +69,7 @@ public void performTest()
6869 }
6970 catch (Exception e )
7071 {
71- throw new IllegalStateException (e .toString (), e );
72+ throw Exceptions . illegalStateException (e .toString (), e );
7273 }
7374 }
7475
Original file line number Diff line number Diff line change 1111import org .bouncycastle .crypto .digests .SHAKEDigest ;
1212import org .bouncycastle .test .TestResourceFinder ;
1313import org .bouncycastle .util .Arrays ;
14+ import org .bouncycastle .util .Exceptions ;
1415import org .bouncycastle .util .encoders .Hex ;
1516
1617/**
@@ -68,7 +69,7 @@ public void performTest()
6869 }
6970 catch (Exception e )
7071 {
71- throw new IllegalStateException (e .toString (), e );
72+ throw Exceptions . illegalStateException (e .toString (), e );
7273 }
7374 }
7475
You can’t perform that action at this time.
0 commit comments