graphql-php/src/Error/Debug.php

17 lines
336 B
PHP
Raw Normal View History

<?php
2018-06-19 14:53:56 +02:00
declare(strict_types=1);
namespace GraphQL\Error;
/**
* Collection of flags for [error debugging](error-handling.md#debugging-tools).
*/
class Debug
{
2018-06-19 14:53:56 +02:00
const INCLUDE_DEBUG_MESSAGE = 1;
const INCLUDE_TRACE = 2;
const RETHROW_INTERNAL_EXCEPTIONS = 4;
const RETHROW_UNSAFE_EXCEPTIONS = 8;
}