froebel
Version:
TypeScript utility library
17 lines (12 loc) • 354 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UniqueViolationError = void 0;
class UniqueViolationError extends Error {
constructor(msg) {
super(`[UniqueViolationError]: ${msg}`);
}
}
exports.UniqueViolationError = UniqueViolationError;
module.exports = Object.assign(exports.default || {}, exports);