(message: string, shouldClearIdToken: boolean)
| 77 | export class XaaTokenExchangeError extends Error { |
| 78 | readonly shouldClearIdToken: boolean |
| 79 | constructor(message: string, shouldClearIdToken: boolean) { |
| 80 | super(message) |
| 81 | this.name = 'XaaTokenExchangeError' |
| 82 | this.shouldClearIdToken = shouldClearIdToken |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | // Matches quoted values for known token-bearing keys regardless of nesting |
nothing calls this directly
no outgoing calls
no test coverage detected