2017-08-17 16:42:28 +07:00
|
|
|
<?php
|
2018-06-19 14:53:56 +02:00
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2017-08-17 16:42:28 +07:00
|
|
|
namespace GraphQL\Error;
|
|
|
|
|
2017-08-19 23:01:46 +07:00
|
|
|
/**
|
2017-08-20 02:33:31 +07:00
|
|
|
* Collection of flags for [error debugging](error-handling.md#debugging-tools).
|
2017-08-19 23:01:46 +07:00
|
|
|
*/
|
2017-08-17 16:42:28 +07:00
|
|
|
class Debug
|
|
|
|
{
|
2018-06-19 14:53:56 +02:00
|
|
|
const INCLUDE_DEBUG_MESSAGE = 1;
|
|
|
|
const INCLUDE_TRACE = 2;
|
2017-08-17 16:42:28 +07:00
|
|
|
const RETHROW_INTERNAL_EXCEPTIONS = 4;
|
2018-09-03 21:18:04 +02:00
|
|
|
const RETHROW_UNSAFE_EXCEPTIONS = 8;
|
2017-08-17 16:42:28 +07:00
|
|
|
}
|