Files
certd/packages/libs/lib-server/src/basic/exception/site-off-exception.ts
2025-04-14 17:40:23 +08:00

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);
}
}