UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

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