(error: Error, message: string, detail: object = {})
| 96 | // Error handling |
| 97 | |
| 98 | handleError(error: Error, message: string, detail: object = {}) { |
| 99 | const { identifier, controller, element } = this |
| 100 | detail = Object.assign({ identifier, controller, element }, detail) |
| 101 | this.application.handleError(error, `Error ${message}`, detail) |
| 102 | } |
| 103 | |
| 104 | // Debug logging |
| 105 |
no test coverage detected