pos-realtime-report/src/base/infrastructure/helpers/error-handlings/invalid-credentials-error.ts

7 lines
155 B
TypeScript

export class InvalidCredentialsError extends Error {
constructor() {
super('Invalid credentials.');
this.name = 'InvalidCredentialsError';
}
}