UNPKG

@gotamedia/oc

Version:

Set of OC helper for NodeJs Runtime.

17 lines (16 loc) 466 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ObjectsError = exports.LogsError = exports.OCError = void 0; class OCError extends Error { constructor(message, options) { super(message, options); this.name = this.constructor.name; } } exports.OCError = OCError; class LogsError extends OCError { } exports.LogsError = LogsError; class ObjectsError extends OCError { } exports.ObjectsError = ObjectsError;