ClientAware.php
2 months ago
CoercionError.php
2 months ago
DebugFlag.php
2 months ago
Error.php
2 months ago
FormattedError.php
2 months ago
InvariantViolation.php
2 months ago
ProvidesExtensions.php
2 months ago
SerializationError.php
2 months ago
SyntaxError.php
2 months ago
UserError.php
2 months ago
Warning.php
2 months ago
SerializationError.php
12 lines
| 1 | <?php declare(strict_types=1); |
| 2 | |
| 3 | namespace Automattic\WooCommerce\Vendor\GraphQL\Error; |
| 4 | |
| 5 | /** |
| 6 | * Thrown when failing to serialize a leaf value. |
| 7 | * |
| 8 | * Not generally safe for clients, as the wrong given value could |
| 9 | * be something not intended to ever be seen by clients. |
| 10 | */ |
| 11 | class SerializationError extends \Exception {} |
| 12 |