aboutsummaryrefslogtreecommitdiff
path: root/fe/src/errors.ts
blob: 81f71453df59c483c77e42c746c20b2ed9f0656d (plain)
1
2
3
4
5
export class UnauthorizedError extends Error {
  constructor(message?: string) {
    super(message);
  }
}