/* * SPDX-FileCopyrightText: 2021-2023 The Refinery Authors * * SPDX-License-Identifier: EPL-2.0 */ export default class TimeoutError extends Error { constructor() { super('Operation timed out'); } }