<?phpnamespaceGraphQL\Error;/** * Class UserError * * Error caused by actions of GraphQL clients. Can be safely displayed to a client... * * @package GraphQL\Error */classUserErrorextends\RuntimeExceptionimplementsClientAware{/** * @return bool */publicfunctionisClientSafe(){returntrue;}/** * @return string */publicfunctiongetCategory(){return'user';}}