Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getCausalChain (0.24 sec)

  1. guava-tests/test/com/google/common/base/ThrowablesTest.java

        IllegalStateException ex = new IllegalStateException(re);
    
        assertEquals(asList(ex, re, iae, sue), Throwables.getCausalChain(ex));
        assertSame(sue, Iterables.getOnlyElement(Throwables.getCausalChain(sue)));
    
        List<Throwable> causes = Throwables.getCausalChain(ex);
        try {
          causes.add(new RuntimeException());
          fail("List should be unmodifiable");
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/ThrowablesTest.java

        IllegalStateException ex = new IllegalStateException(re);
    
        assertEquals(asList(ex, re, iae, sue), Throwables.getCausalChain(ex));
        assertSame(sue, Iterables.getOnlyElement(Throwables.getCausalChain(sue)));
    
        List<Throwable> causes = Throwables.getCausalChain(ex);
        try {
          causes.add(new RuntimeException());
          fail("List should be unmodifiable");
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 23.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Throwables.java

       * <pre>
       * Iterables.filter(Throwables.getCausalChain(e), IOException.class));
       * </pre>
       *
       * @param throwable the non-null {@code Throwable} to extract causes from
       * @return an unmodifiable list containing the cause chain starting with {@code throwable}
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
      public static List<Throwable> getCausalChain(Throwable throwable) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Throwables.java

       * <pre>
       * Iterables.filter(Throwables.getCausalChain(e), IOException.class));
       * </pre>
       *
       * @param throwable the non-null {@code Throwable} to extract causes from
       * @return an unmodifiable list containing the cause chain starting with {@code throwable}
       * @throws IllegalArgumentException if there is a loop in the causal chain
       */
      public static List<Throwable> getCausalChain(Throwable throwable) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Mar 06 15:38:58 GMT 2024
    - 20.6K bytes
    - Viewed (0)
Back to top