mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
feat: Payment system with voucher cards.
feat: Design with inversion dependency injection architecture. feat: Prettier http middleware. feat: Re-write items categories with preferred accounts.
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
|
||||
|
||||
export default class NotAllowedChangeSubscriptionPlan extends Error{
|
||||
|
||||
constructor(message: string) {
|
||||
super(message);
|
||||
this.name = "NotAllowedChangeSubscriptionPlan";
|
||||
}
|
||||
}
|
||||
5
server/src/exceptions/index.ts
Normal file
5
server/src/exceptions/index.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import NotAllowedChangeSubscriptionPlan from './NotAllowedChangeSubscriptionPlan';
|
||||
|
||||
export {
|
||||
NotAllowedChangeSubscriptionPlan,
|
||||
};
|
||||
Reference in New Issue
Block a user