Files
optima/api/src/Errors/PermissionsVerificationError.ts
T

9 lines
234 B
TypeScript

export default class PermissionsVerificationError extends Error {
constructor(message: string, cause?: string) {
super();
this.name = "PermissionsVerificationError";
this.message = message;
this.cause = cause;
}
}