Files
certd/packages/libs/lib-server/src/basic/exception/auth-exception.ts

11 lines
305 B
TypeScript
Raw Normal View History

2024-07-15 00:30:33 +08:00
import { Constants } from '../constants.js';
import { BaseException } from './base-exception.js';
2023-01-29 13:44:19 +08:00
/**
*
*/
export class AuthException extends BaseException {
constructor(message) {
super('AuthException', Constants.res.auth.code, message ? message : Constants.res.auth.message);
2023-01-29 13:44:19 +08:00
}
}