telme/lib/errors/config_file_format.error.ts
Sagi Dayan 2db82b708d [WIP]
- Changed from js to ts
 - Added implementation for profiles
 - Can also be used as a node_module
2020-03-22 18:09:33 -04:00

7 lines
199 B
TypeScript

import BaseError from './base_error';
export default class ConfigFileFormatError extends BaseError {
constructor(msg: string) {
super(msg, BaseError.ErrorCodes.CONFIG_FILE_FORMAT_ERROR);
}
}