"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.InternalError = void 0;
class InternalError extends Error {
constructor(code, message) {
super(message);
this.code = code;
}
}
exports.InternalError = InternalError;