(message: string)
| 47 | static op_msgError = 'op_msgError' as const; |
| 48 | |
| 49 | static msg(message: string) { |
| 50 | return new MsgError(MsgError.op_msgError, message); |
| 51 | } |
| 52 | static isMsgError(err: unknown): err is MsgError { |
| 53 | return err instanceof MsgError; |
| 54 | } |
no outgoing calls
no test coverage detected