mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
|
|
export default class ModelEntityNotFound extends Error {
|
|
|
|
constructor(entityId, message?) {
|
|
message = message || `Entity with id ${entityId} does not exist`;
|
|
super(message);
|
|
}
|
|
} |