UNPKG

264 BTypeScriptView Raw
1/**
2 * Error subclass to use when the source has not been modified.
3 *
4 * @param {String} message optional "message" property to set
5 * @api protected
6 */
7export default class NotModifiedError extends Error {
8 code: string;
9 constructor(message?: string);
10}