public interface ExceptionHandler
修飾子とタイプ | メソッドと説明 |
---|---|
Result |
handleError(java.lang.Error e,
ExecutionContext context)
Error の例外処理を行う。
|
Result |
handleRuntimeException(java.lang.RuntimeException e,
ExecutionContext context)
RuntimeExceptionの例外処理を行う。
|
Result handleError(java.lang.Error e, ExecutionContext context) throws java.lang.Error, java.lang.RuntimeException
e
- 処理するErrorcontext
- ExecutionContextjava.lang.Error
- 例外を処理できない場合java.lang.RuntimeException
- 例外を処理できない場合、または付け替えた例外Result handleRuntimeException(java.lang.RuntimeException e, ExecutionContext context) throws java.lang.RuntimeException
e
- 処理する例外context
- ExecutionContextjava.lang.RuntimeException
- 例外を処理できない場合、または付け替えた例外