standardlint
Version:
Extensible standards linter and auditor.
23 lines (21 loc) • 549 B
JavaScript
// src/application/errors/errors.ts
var MissingChecksError = class extends Error {
constructor() {
super();
this.name = "MissingChecksError";
const message = "Missing checks!";
this.message = message;
}
};
var InvalidFiletreeError = class extends Error {
constructor() {
super();
this.name = "InvalidFiletreeError";
const message = "Invalid filetree provided: Must contain at least 1 string if a filetree is to be used.";
this.message = message;
}
};
export {
MissingChecksError,
InvalidFiletreeError
};