(err: string, retcode: number, echo?: unknown)
| 22 | } |
| 23 | |
| 24 | static error(err: string, retcode: number, echo?: unknown) { |
| 25 | const res = OB11Response.res(null, 'failed', retcode, err) |
| 26 | if (!isNullable(echo)) { |
| 27 | res.echo = echo |
| 28 | } |
| 29 | return res |
| 30 | } |
| 31 | } |
no test coverage detected