UNPKG

@techmmunity/symbiosis

Version:

Symbiosis - The Ultimate OM For All Databases

15 lines (14 loc) 467 B
import type { SymbiosisErrorCode } from "../types/error-code"; interface CustomErrorParams { code: SymbiosisErrorCode; origin: "DATABASE" | "SYMBIOSIS"; message: string; details: Array<any>; } export declare class SymbiosisError extends Error { code: CustomErrorParams["code"]; origin: CustomErrorParams["origin"]; details: CustomErrorParams["details"]; constructor({ message, code, origin, details }: CustomErrorParams); } export {};