/**
* A custom Error class thrown when the input data is not in Common Log Format (CLF)
*/classIncorrectFormatErrorextendsError {
constructor(...args) {
super(...args)
Error.captureStackTrace(this, IncorrectFormatError)
}
}
module.exports = IncorrectFormatError