mirror of
https://github.com/retailcrm/graphql-php.git
synced 2024-11-22 21:06:05 +03:00
31 lines
598 B
PHP
31 lines
598 B
PHP
|
<?php
|
||
|
|
||
|
use GraphQL\Error\ClientAware;
|
||
|
|
||
|
class Unsafe extends \Exception implements ClientAware
|
||
|
{
|
||
|
/**
|
||
|
* Returns true when exception message is safe to be displayed to a client.
|
||
|
*
|
||
|
* @api
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function isClientSafe()
|
||
|
{
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns string describing a category of the error.
|
||
|
*
|
||
|
* Value "graphql" is reserved for errors produced by query parsing or validation, do not use it.
|
||
|
*
|
||
|
* @api
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getCategory()
|
||
|
{
|
||
|
return 'unsafe';
|
||
|
}
|
||
|
}
|