Annotation Interface ExceptionHandler


@Documented @Target(METHOD) @Retention(RUNTIME) public @interface ExceptionHandler
Marks a method as a exception handler. When exceptions are thrown from methods annotated with annotations listed below, the most appropriate handler is chosen and invoked. In the case that exceptions raised from Task / Callable methods are handled by TaskExceptionHandler / CallableExceptionHandler methods without raising another exceptions, handlers are not invoked.
 @Controller
 class MyController extends AbstractController{
   @Task
   void foo(){
     throw new RuntimeException();
   }

   @ExceptionHandler( "foo" )
   void fooExceptionHandler( RuntimeException e ){
     // Called when the task "foo" raises an exception
   }
 }
 
Supported annotations are:
  • 任意要素の概要

    任意要素
    修飾子とタイプ
    任意要素
    説明
    Names of methods and fields annotated exception handler handles.
  • 要素の詳細

    • value

      String[] value
      Names of methods and fields annotated exception handler handles. If it is empty, annotated exception handler handles all the methods and fields.
      戻り値:
      Names of methods and fields annotated exception handler handles.
      デフォルト:
      {"*"}