9 lines
316 B
JavaScript
9 lines
316 B
JavaScript
|
import { ProviderError } from "./ProviderError";
|
||
|
export class CredentialsProviderError extends ProviderError {
|
||
|
constructor(message, options = true) {
|
||
|
super(message, options);
|
||
|
this.name = "CredentialsProviderError";
|
||
|
Object.setPrototypeOf(this, CredentialsProviderError.prototype);
|
||
|
}
|
||
|
}
|