"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.UnsupportedExtensionError = void 0;
class UnsupportedExtensionError extends Error {
constructor(filepath) {
super(`No parser could be inferred`);
}
}
exports.UnsupportedExtensionError = UnsupportedExtensionError;