mirror of
https://github.com/certd/certd.git
synced 2026-04-14 04:20:52 +08:00
10 lines
301 B
TypeScript
10 lines
301 B
TypeScript
import { Constants } from '../constants.js';
|
|
import { BaseException } from './base-exception.js';
|
|
/**
|
|
*/
|
|
export class SiteOffException extends BaseException {
|
|
constructor(message) {
|
|
super('SiteOffException', Constants.res.siteOff.code, message ? message : Constants.res.siteOff.message);
|
|
}
|
|
}
|