Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for TwoArgConstructorException (0.15 seconds)

  1. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        TwoArgConstructorException expected =
            assertThrows(
                TwoArgConstructorException.class,
                () -> getChecked(FAILED_FUTURE_OTHER_THROWABLE, TwoArgConstructorException.class));
        assertThat(expected).hasCauseThat().isEqualTo(OTHER_THROWABLE);
      }
    
      public void testGetCheckedUntimed_runtimeException() throws TwoArgConstructorException {
        RuntimeException expected =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java

        TwoArgConstructorException expected =
            assertThrows(
                TwoArgConstructorException.class,
                () -> getChecked(FAILED_FUTURE_OTHER_THROWABLE, TwoArgConstructorException.class));
        assertThat(expected).hasCauseThat().isEqualTo(OTHER_THROWABLE);
      }
    
      public void testGetCheckedUntimed_runtimeException() throws TwoArgConstructorException {
        RuntimeException expected =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

      static final Future<String> ERROR_FUTURE = UncheckedThrowingFuture.throwingError(ERROR);
    
      public static final class TwoArgConstructorException extends Exception {
        public TwoArgConstructorException(String message, Throwable cause) {
          super(message, cause);
        }
      }
    
      public static final class TwoArgConstructorRuntimeException extends RuntimeException {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

      static final Future<String> ERROR_FUTURE = UncheckedThrowingFuture.throwingError(ERROR);
    
      public static final class TwoArgConstructorException extends Exception {
        public TwoArgConstructorException(String message, Throwable cause) {
          super(message, cause);
        }
      }
    
      public static final class TwoArgConstructorRuntimeException extends RuntimeException {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 15:59:55 GMT 2026
    - 6.3K bytes
    - Click Count (0)
Back to Top