UNPKG

graphql-request

Version:

Minimal GraphQL client supporting Node and browsers for scripts or simple apps.

8 lines 312 B
import { ContextualError } from './ContextualError.js'; export class ErrorInternal extends ContextualError { name = `ErrorInternal`; constructor(message = `Something went wrong.`, context = {}, cause = undefined) { super(message, context, cause); } } //# sourceMappingURL=ErrorInternal.js.map