UNPKG

@datalayer/core

Version:
14 lines (13 loc) 372 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ /** * Error emitted when the user tries to create more runtimes than allowed. */ export class MaxRuntimesExceededError extends Error { constructor(message, options) { super(message, options); this.name = 'MaxRuntimesExceededError'; } }