Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for unwrapCause (0.09 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

                throw new IllegalArgumentException("Could not instantiate annotation processor '" + processorClass.getName() + "'", unwrapCause(e));
            }
        }
    
        private Throwable unwrapCause(Throwable throwable) {
            if (throwable instanceof InvocationTargetException) {
                return throwable.getCause();
            }
            return throwable;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top