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

10 lines
301 B
TypeScript
Raw Normal View History

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