@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
13 lines (12 loc) • 505 B
TypeScript
/**
* @author WMXPY
* @namespace Error
* @description Feature Not Supported
*/
import { IMBRICATE_DATABASE_FEATURE } from "../../database/feature";
import { ImbricateDatabaseError } from "./database-error";
export declare class ImbricateDatabaseFeatureNotSupportedError extends ImbricateDatabaseError {
static withFeature(feature: IMBRICATE_DATABASE_FEATURE): ImbricateDatabaseFeatureNotSupportedError;
static readonly TYPE: string;
protected constructor(message: string, reason?: any);
}