(opts, handler)
| 713 | } |
| 714 | |
| 715 | function setNotFoundHandler (opts, handler) { |
| 716 | throwIfAlreadyStarted('Cannot call "setNotFoundHandler"!') |
| 717 | |
| 718 | fourOhFour.setNotFoundHandler.call(this, opts, handler, avvio, router.routeHandler) |
| 719 | return this |
| 720 | } |
| 721 | |
| 722 | function setValidatorCompiler (validatorCompiler) { |
| 723 | throwIfAlreadyStarted('Cannot call "setValidatorCompiler"!') |
nothing calls this directly
no test coverage detected