// SPDX-License-Identifier: MIT // Copyright (c) 2022 The Pybricks Authors import { CustomError } from '../utils/customError'; /** Specific errors for editor subsystem. */ export type ExplorerErrorName = 'NoFiles'; /** Error class for editor subsystem. */ export class ExplorerError extends CustomError {}