aboutsummaryrefslogtreecommitdiff
path: root/src/util/error.ts
blob: 538084946d559968d5f0da1b6d2675e7cb68b50c (plain)
1
2
3
4
5
6
export class PeerTeacherImportError extends Error {
    constructor(message) {
        super(message);
        this.name = "PeerTeacherImportError";
    }
}