summaryrefslogtreecommitdiff
path: root/src/SearchError.ts
blob: 3ee2831f7c2927050c504e90f0c7b5b5de6bdd81 (plain)
1
2
3
4
5
6
export class SearchError extends Error {
    constructor(message: string) {
        super(message);
        this.name = "SearchError";
    }
}