in public/dexie.js [490:503]
function DexieError(msgOrInner, inner) {
this._e = getErrorWithStack();
this.name = fullName;
if (!msgOrInner) {
this.message = defaultTexts[name] || fullName;
this.inner = null;
} else if (typeof msgOrInner === "string") {
this.message = msgOrInner;
this.inner = inner || null;
} else if (typeof msgOrInner === "object") {
this.message = msgOrInner.name + " " + msgOrInner.message;
this.inner = msgOrInner;
}
}