function InvalidPathsError(message, paths) {
    AbstractError.call(this, message, this.constructor);
    this.name = "Invalid Paths Error";
    this.paths = paths;
}