()
| 104 | |
| 105 | |
| 106 | def construct_entry_point_handlers_chain(): |
| 107 | handlers = [ |
| 108 | ParamValidationErrorsHandler(), |
| 109 | PrompterInterruptExceptionHandler(), |
| 110 | InterruptExceptionHandler(), |
| 111 | GeneralExceptionHandler(), |
| 112 | ] |
| 113 | return ChainedExceptionHandler(exception_handlers=handlers) |
| 114 | |
| 115 | |
| 116 | def construct_cli_error_handlers_chain(session=None): |
no test coverage detected