@opra/common
Version:
Opra common package
9 lines (8 loc) • 341 B
TypeScript
import { OpraHttpError } from '../opra-http-error.js';
/**
* The server cannot find the requested resource.
* This can also mean that the endpoint is valid but the resource itself does not exist.
*/
export declare class ResourceNotAvailableError extends OpraHttpError {
constructor(resource: string, keyValue?: any, cause?: Error);
}