Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isCheckedException (0.13 sec)

  1. guava/src/com/google/common/util/concurrent/FuturesGetChecked.java

          return null;
        }
      }
    
      @VisibleForTesting
      static boolean isCheckedException(Class<? extends Exception> type) {
        return !RuntimeException.class.isAssignableFrom(type);
      }
    
      @VisibleForTesting
      static void checkExceptionClassValidity(Class<? extends Exception> exceptionClass) {
        checkArgument(
            isCheckedException(exceptionClass),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top