mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
add server to monorepo.
This commit is contained in:
8
packages/server/src/exceptions/ModelEntityNotFound.ts
Normal file
8
packages/server/src/exceptions/ModelEntityNotFound.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
export default class ModelEntityNotFound extends Error {
|
||||
|
||||
constructor(entityId, message?) {
|
||||
message = message || `Entity with id ${entityId} does not exist`;
|
||||
super(message);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user