@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
12 lines (11 loc) • 470 B
TypeScript
/**
* @namespace Error
* @description Feature Not Supported
*/
import { IMBRICATE_DOCUMENT_FEATURE } from "../../document/feature";
import { DocumentError } from "./document-error";
export declare class ImbricateDocumentFeatureNotSupportedError extends DocumentError {
static withFeature(feature: IMBRICATE_DOCUMENT_FEATURE): ImbricateDocumentFeatureNotSupportedError;
static readonly TYPE: string;
protected constructor(message: string, reason?: any);
}