| 13 | } |
| 14 | |
| 15 | export class UserRejectedConnectionError extends UserError { |
| 16 | constructor() { |
| 17 | super('User rejected the connection to their wallet'); |
| 18 | this.name = 'UserRejectedConnectionError'; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | export class UserRejectedTransactionError extends UserError { |
| 23 | constructor() { |
nothing calls this directly
no outgoing calls
no test coverage detected