UNPKG

328 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.GraphQLException = void 0;
4const graphql_1 = require("graphql");
5class GraphQLException extends graphql_1.GraphQLError {
6 constructor(message, options) {
7 super(message, options);
8 }
9}
10exports.GraphQLException = GraphQLException;