Skip to content

Commit

Permalink
fix: conflict exception should extend `XGraphQL\SchemaGateway\Excepti…
Browse files Browse the repository at this point in the history
…on\RuntimeException` instead
  • Loading branch information
vuongxuongminh committed Mar 24, 2024
1 parent 10d84a2 commit 4f7a1b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exception/ConflictException.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace XGraphQL\SchemaGateway\Exception;

final class ConflictException extends \RuntimeException implements ExceptionInterface
final class ConflictException extends RuntimeException implements ExceptionInterface
{
public function __construct(string $message, public readonly array $schemas)
{
Expand Down

0 comments on commit 4f7a1b6

Please sign in to comment.