Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for staticOneArgNullableCorrectlyThrowsOtherThanNPE (0.26 sec)

  1. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

            @javax.annotation.CheckForNull String s) {
          throw new FooException(); // ok, as long as it's not NullPointerException
        }
    
        public static void staticOneArgNullableCorrectlyThrowsOtherThanNPE(@Nullable String s) {
          throw new FooException(); // ok, as long as it's not NullPointerException
        }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 47.9K bytes
    - Viewed (0)
Back to top