public interface ExceptionHandler
Modifier and Type | Method and Description |
---|---|
Result |
handleError(java.lang.Error e,
ExecutionContext context)
Error の例外処理を行う。
例外をNablarchのハンドラでレスポンスとして処理する場合、 このハンドラより外部のハンドラが処理できるレスポンスオブジェクトを返す。 |
Result |
handleRuntimeException(java.lang.RuntimeException e,
ExecutionContext context)
RuntimeExceptionの例外処理を行う。
例外をNablarchのハンドラでレスポンスとして処理する場合、 このハンドラより外部のハンドラが処理できるレスポンスオブジェクトを返す。 |
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
- 例外を処理できない場合、または付け替えた例外