UNPKG

@mlightcad/common

Version:

The common package provides shared utilities and base classes that are used across the RealDWG-Web ecosystem. This package contains fundamental components for color management, event handling, logging, performance monitoring, and file loading operations.

23 lines 834 B
export declare const AcCmErrors: { /** * Throw error ILLEGAL_PARAMETERS when cannot instantiate from given parameter */ readonly ILLEGAL_PARAMETERS: ReferenceError; /** * Throw error ZERO_DIVISION to catch situation of zero division */ readonly ZERO_DIVISION: Error; /** * Error to throw from BooleanOperations module in case when fixBoundaryConflicts not capable to fix it */ readonly UNRESOLVED_BOUNDARY_CONFLICT: Error; /** * Error to throw from LinkedList:testInfiniteLoop static method * in case when circular loop detected in linked list */ readonly INFINITE_LOOP: Error; readonly CANNOT_INVOKE_ABSTRACT_METHOD: Error; readonly OPERATION_IS_NOT_SUPPORTED: Error; readonly NOT_IMPLEMENTED: Error; }; //# sourceMappingURL=AcCmErrors.d.ts.map