aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/utils/CancelledError.ts
blob: 8d3e55d831c292992157bb049be112467310abe8 (plain) (blame)
1
2
3
4
5
export default class CancelledError extends Error {
  constructor() {
    super('Operation cancelled');
  }
}