use Ynlo\GraphQLBundle\Exception\AbstractControlledError;
15
16
class InternalServerError extends AbstractControlledError
17
{
18
protected $code = 500;
19
20
protected $message = 'Internal Server Error';
21
22
protected $description = 'Something is broken. This is usually a temporary error, for example in a high load situation or if an endpoint is temporarily having issues.';