mirror of https://github.com/certd/certd
11 lines
311 B
TypeScript
11 lines
311 B
TypeScript
import { Constants } from '../constants.js';
|
|
import { BaseException } from './base-exception.js';
|
|
/**
|
|
* 通用异常
|
|
*/
|
|
export class CommonException extends BaseException {
|
|
constructor(message) {
|
|
super('CommonException', Constants.res.error.code, message ? message : Constants.res.error.message);
|
|
}
|
|
}
|