Skip to content
Snippets Groups Projects
index.js 352 B
Newer Older
  • Learn to ignore specific revisions
  • "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.AppError = exports.GeneralError = void 0;
    class GeneralError extends Error {
        constructor(message) {
            super();
            this.message = message;
        }
    }
    exports.GeneralError = GeneralError;
    class AppError extends GeneralError {
    }
    exports.AppError = AppError;