graphql-php/src/FormattedError.php

19 lines
303 B
PHP
Raw Normal View History

2015-07-15 23:05:46 +06:00
<?php
namespace GraphQL;
class FormattedError
{
public $message;
/**
* @var array<Language\SourceLocation>
*/
public $locations;
public function __construct($message, $locations = null)
{
$this->message = $message;
$this->locations = $locations;
}
}