@palmares/databases
Version:
Add support for working with databases with palmares framework
17 lines (15 loc) • 566 B
JavaScript
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/migrations/exceptions.ts
var DefaultDuplicateFunctionNotCalledOnEngine = class _DefaultDuplicateFunctionNotCalledOnEngine extends Error {
static {
__name(this, "DefaultDuplicateFunctionNotCalledOnEngine");
}
constructor() {
super("Default duplicate function was not called by engine.");
this.name = _DefaultDuplicateFunctionNotCalledOnEngine.name;
}
};
export {
DefaultDuplicateFunctionNotCalledOnEngine
};