frontend/.pnpm-store/v3/files/57/839042068c687c32efd8edd392425ed94151689bb1fcb92a3f228586547830490a259620ae730fe79d608e99ad2c32965ec5aa66ad5f3f79faac4a3256a6a8

11 lines
280 B
Plaintext

/**
* Error subclass to use when the source does not exist at the specified endpoint.
*
* @param {String} message optional "message" property to set
* @api protected
*/
export default class NotFoundError extends Error {
code: string;
constructor(message?: string);
}