mirror of
https://github.com/certd/certd.git
synced 2026-05-18 06:17:31 +08:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
|
|
import { Constants } from '../constants.js';
|
||
|
|
import { BaseException } from './base-exception.js';
|
||
|
|
/**
|
||
|
|
* 需要vip异常
|
||
|
|
*/
|
||
|
|
export class NeedVIPException extends BaseException {
|
||
|
|
constructor(message) {
|
||
|
|
super('NeedVIPException', Constants.res.needvip.code, message ? message : Constants.res.needvip.message);
|
||
|
|
}
|
||
|
|
}
|