aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/utils/CancelledError.ts
blob: 96b67af753aa7f8e14794d0eac36deccd052ed47 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
/*
 * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors <https://refinery.tools/>
 *
 * SPDX-License-Identifier: EPL-2.0
 */

export default class CancelledError extends Error {
  constructor(message = 'Operation cancelled') {
    super(message);
  }
}