slim-ef
Version:
An implementation of basic entity framework functionnalities in typescript
10 lines • 327 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmptySetException = void 0;
class EmptySetException extends Error {
constructor(message) {
super(message || 'Object not found');
}
}
exports.EmptySetException = EmptySetException;
//# sourceMappingURL=exception.js.map