mirror of
https://github.com/retailcrm/graphql-php.git
synced 2025-02-11 18:19:23 +03:00
19 lines
313 B
PHP
19 lines
313 B
PHP
<?php
|
|
namespace GraphQL;
|
|
|
|
trigger_error(
|
|
'GraphQL\Error was moved to GraphQL\Error\Error and will be deleted on next release',
|
|
E_USER_DEPRECATED
|
|
);
|
|
|
|
|
|
/**
|
|
* Class Error
|
|
*
|
|
* @deprecated since 2016-10-21 in favor of GraphQL\Error\Error
|
|
* @package GraphQL
|
|
*/
|
|
class Error extends \GraphQL\Error\Error
|
|
{
|
|
}
|