for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ecodev\Felix\Api;
use GraphQL\Error\ClientAware;
/**
* Exception that will show its message to end-user even on production server.
*/
class Exception extends \Exception implements ClientAware
{
public function isClientSafe(): bool
return true;
}