Annotation Interface TaskExceptionHandler


@Documented @Target(METHOD) @Retention(RUNTIME) public @interface TaskExceptionHandler
Annotated methods are called when the specified tasks raise exceptions.
 @Controller
 class MyController extends AbstractController{
   @Task
   void foo(){
     throw new RuntimeException();
   }

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

    任意要素
    修飾子とタイプ
    任意要素
    説明
     
  • 要素の詳細

    • value

      String[] value
      デフォルト:
      {"*"}