- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
9 lines
289 B
JavaScript
9 lines
289 B
JavaScript
import { ProviderError } from "./ProviderError";
|
|
export class TokenProviderError extends ProviderError {
|
|
name = "TokenProviderError";
|
|
constructor(message, options = true) {
|
|
super(message, options);
|
|
Object.setPrototypeOf(this, TokenProviderError.prototype);
|
|
}
|
|
}
|