frontend/.pnpm-store/v3/files/93/7cf6459b0c949e1f7ae8b27c1f00c0d309ce1b6df4cef9581d5698c0f978d50256e6606d92a509f56fd8e04b47d9526093cfd6e19ef8efac1c652a743f58b7

11 lines
264 B
Plaintext

/**
* Error subclass to use when the source has not been modified.
*
* @param {String} message optional "message" property to set
* @api protected
*/
export default class NotModifiedError extends Error {
code: string;
constructor(message?: string);
}