/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { ErrorWithHttpStatusCode } from './ErrorWithHttpStatusCode'; /** * Not found error (404). * @export * @class NotFoundError * @extends {ErrorWithHttpStatusCode} */ export declare class NotFoundError extends ErrorWithHttpStatusCode { constructor(details: string, message?: string); }