()
| 28 | } |
| 29 | |
| 30 | override toString(): string { |
| 31 | return this.hint |
| 32 | ? `${this.code}: ${this.message} (hint: ${this.hint})` |
| 33 | : `${this.code}: ${this.message}` |
| 34 | } |
| 35 | |
| 36 | toEnvelope(): ErrorEnvelope { |
| 37 | const payload: ErrorEnvelope['error'] = { |
no outgoing calls