HomeSort by relevance Sort by last modified time
    Searched refs:FJException (Results 1 - 4 of 4) sorted by null

  /libcore/jsr166-tests/src/test/java/jsr166/
RecursiveActionTest.java 172 public static final class FJException extends RuntimeException {
173 public FJException() { super(); }
174 public FJException(Throwable cause) { super(cause); }
203 throw new FJException();
292 f.completeExceptionally(new FJException());
299 } catch (FJException success) {
324 f.completeExceptionally(new FJException());
351 fibActions[2].completeExceptionally(new FJException());
353 fibActions[5].completeExceptionally(new FJException());
397 } catch (FJException success)
    [all...]
ForkJoinTaskTest.java 214 public static final class FJException extends RuntimeException {
215 FJException() { super(); }
382 completeExceptionally(new FJException());
521 } catch (FJException success) {
536 assertTrue(f.getException() instanceof FJException);
553 } catch (FJException success) {
573 assertTrue(cause instanceof FJException);
593 assertTrue(cause instanceof FJException);
609 assertTrue(f.getException() instanceof FJException);
769 f.completeExceptionally(new FJException());
    [all...]
CountedCompleterTest.java 210 public static final class FJException extends RuntimeException {
211 FJException() { super(); }
312 .checkCompletesExceptionally(new FJException());
314 .checkCompletesExceptionally(new FJException());
601 completeExceptionally(new FJException());
740 } catch (FJException success) {
755 assertTrue(f.getException() instanceof FJException);
772 } catch (FJException success) {
792 assertTrue(cause instanceof FJException);
812 assertTrue(cause instanceof FJException);
    [all...]
RecursiveTaskTest.java 189 public static final class FJException extends RuntimeException {
190 public FJException() { super(); }
222 throw new FJException();
355 } catch (FJException success) {
371 assertTrue(f.getException() instanceof FJException);
389 } catch (FJException success) {
410 assertTrue(cause instanceof FJException);
431 assertTrue(cause instanceof FJException);
448 assertTrue(f.getException() instanceof FJException);
648 } catch (FJException success)
    [all...]

Completed in 45 milliseconds