aboutsummaryrefslogtreecommitdiff
path: root/fe/src/lib/errors.ts
blob: 0663d63ee6e9b3894f5e5643e43f34ae27d01962 (plain)
1
2
3
4
5
6
7
export class UnauthorizedError extends Error {
    constructor (message?: string , options?: ErrorOptions) {
        super(message, options);
    }
}