(serverName: string, message: string)
| 152 | export class McpAuthError extends Error { |
| 153 | serverName: string |
| 154 | constructor(serverName: string, message: string) { |
| 155 | super(message) |
| 156 | this.name = 'McpAuthError' |
| 157 | this.serverName = serverName |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected