Annotation 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:
-
任意要素の概要
任意要素
-
要素の詳細
-
value
String[] valueNames 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.
- デフォルト:
- {"*"}
-