UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 565 B
/** * @author WMXPY * @namespace Error * @description Feature Not Supported */ import { IMBRICATE_DATABASE_MANAGER_FEATURE } from "../../database-manager/feature"; import { ImbricateDatabaseManagerError } from "./database-manager-error"; export declare class ImbricateDatabaseManagerFeatureNotSupportedError extends ImbricateDatabaseManagerError { static withFeature(feature: IMBRICATE_DATABASE_MANAGER_FEATURE): ImbricateDatabaseManagerFeatureNotSupportedError; static readonly TYPE: string; protected constructor(message: string, reason?: any); }