deno.land / x / pothos@release-1713397530 / packages / core / errors.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// @ts-nocheck/* eslint-disable max-classes-per-file */import { GraphQLError, GraphQLErrorOptions } from 'https://cdn.skypack.dev/graphql?dts';export class PothosError extends GraphQLError { constructor(message: string, options?: GraphQLErrorOptions) { super(message, options); this.name = "PothosError"; }}export class PothosSchemaError extends PothosError { constructor(message: string, options?: GraphQLErrorOptions) { super(message, options); this.name = "PothosSchemaError"; }}export class PothosValidationError extends PothosError { constructor(message: string, options?: GraphQLErrorOptions) { super(message, options); this.name = "PothosValidationError"; }}
pothos

Version Info

Tagged at
a year ago