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 160 public static final class FJException extends RuntimeException {
161 public FJException() { super(); }
162 public FJException(Throwable cause) { super(cause); }
191 throw new FJException();
280 f.completeExceptionally(new FJException());
287 } catch (FJException success) {
312 f.completeExceptionally(new FJException());
339 fibActions[2].completeExceptionally(new FJException());
341 fibActions[5].completeExceptionally(new FJException());
385 } catch (FJException success)
    [all...]
ForkJoinTaskTest.java 203 public static final class FJException extends RuntimeException {
204 FJException() { super(); }
371 completeExceptionally(new FJException());
510 } catch (FJException success) {
525 assertTrue(f.getException() instanceof FJException);
542 } catch (FJException success) {
562 assertTrue(cause instanceof FJException);
582 assertTrue(cause instanceof FJException);
598 assertTrue(f.getException() instanceof FJException);
758 f.completeExceptionally(new FJException());
    [all...]
CountedCompleterTest.java 201 public static final class FJException extends RuntimeException {
202 FJException() { super(); }
303 .checkCompletesExceptionally(new FJException());
305 .checkCompletesExceptionally(new FJException());
591 completeExceptionally(new FJException());
730 } catch (FJException success) {
745 assertTrue(f.getException() instanceof FJException);
762 } catch (FJException success) {
782 assertTrue(cause instanceof FJException);
802 assertTrue(cause instanceof FJException);
    [all...]
RecursiveTaskTest.java 178 public static final class FJException extends RuntimeException {
179 public FJException() { super(); }
211 throw new FJException();
344 } catch (FJException success) {
360 assertTrue(f.getException() instanceof FJException);
378 } catch (FJException success) {
399 assertTrue(cause instanceof FJException);
420 assertTrue(cause instanceof FJException);
437 assertTrue(f.getException() instanceof FJException);
637 } catch (FJException success)
    [all...]

Completed in 248 milliseconds