@arsat/mixin
Version:
## Description
10 lines • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MixinException = void 0;
class MixinException extends Error {
constructor(Delegate, Self) {
super(`${Delegate.name} is a subclass of ${Self.name}. Mixin is not allowed.`);
}
}
exports.MixinException = MixinException;
//# sourceMappingURL=mixin-exception.js.map