UNPKG

280 BTypeScriptView Raw
1/**
2 * Error subclass to use when the source does not exist at the specified endpoint.
3 *
4 * @param {String} message optional "message" property to set
5 * @api protected
6 */
7export default class NotFoundError extends Error {
8 code: string;
9 constructor(message?: string);
10}