shelving
Version:
Toolkit for using data in JavaScript.
6 lines (5 loc) • 299 B
TypeScript
import { BaseError, type BaseErrorOptions } from "./BaseError.js";
/** Thrown in the event of network issues e.g. the user's internet connection is down, or the server is down. */
export declare class NetworkError extends BaseError {
constructor(message?: string, options?: BaseErrorOptions);
}