mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-02-12 02:29:23 +03:00
15 lines
196 B
PHP
15 lines
196 B
PHP
|
<?php
|
||
|
namespace GraphQL\Error;
|
||
|
|
||
|
/**
|
||
|
* Class UserError
|
||
|
*
|
||
|
* Note:
|
||
|
* Error that can be display safely to client...
|
||
|
*
|
||
|
* @package GraphQL\Error
|
||
|
*/
|
||
|
class UserError extends InvariantViolation
|
||
|
{
|
||
|
}
|