(
message: string,
public readonly formattedMessage: string,
)
| 62 | |
| 63 | export class TeleportOperationError extends Error { |
| 64 | constructor( |
| 65 | message: string, |
| 66 | public readonly formattedMessage: string, |
| 67 | ) { |
| 68 | super(message) |
| 69 | this.name = 'TeleportOperationError' |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected