Packages
A spellchecker for Elixir, made with Bun and cspell
Current section
Files
Jump to
Current section
Files
priv/bun/node_modules/cspell-lib/dist/lib/SpellingDictionary/SpellingDictionaryError.js
export class SpellingDictionaryLoadError extends Error {
uri;
options;
cause;
name;
constructor(uri, options, cause, message) {
super(message);
this.uri = uri;
this.options = options;
this.cause = cause;
this.name = options.name;
}
}
export function isSpellingDictionaryLoadError(e) {
return e instanceof SpellingDictionaryLoadError;
}
//# sourceMappingURL=SpellingDictionaryError.js.map