@themost/jspa
Version:
MOST Web Framework Persistence API
11 lines (10 loc) • 364 B
text/typescript
export class EntityNotFoundException extends Error {
constructor(msg?: string) {
super(msg || 'The specified entity cannot be found or is inaccessible');
}
}
export class SymbolTypeNotSupportedException extends Error {
constructor(msg?: string) {
super(msg || 'The current decorator does not support Symbol type property key');
}
}