(message: string)
| 17 | } |
| 18 | |
| 19 | export function fatal(message: string): never { |
| 20 | throw new FatalException(message); |
| 21 | } |
| 22 | |
| 23 | export function isFatal(e: any): e is FatalException { |
| 24 | return e && e instanceof FatalException; |
no outgoing calls
no test coverage detected