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