Files
2026-07-13 11:58:44 +08:00

23 lines
563 B
JavaScript

/**
* Error whose message is a translation key.
* @augments Error
*/
class TranslatableError extends Error {
/**
* Indicates that the error message is a translation key.
*/
msgi18n = true;
/**
* Create a TranslatableError.
* @param {string} key - Translation key present in src/lang/en.json
* @param {object} meta Arbitrary metadata
*/
constructor(key, meta = {}) {
super(key);
this.meta = meta;
Error.captureStackTrace(this, this.constructor);
}
}
module.exports = TranslatableError;