Annotation 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- デフォルト:
- {"*"}
-