Skip to content

Commit

Permalink
Merge pull request #20 from x-graphql/prefer-to-extends-internal-runt…
Browse files Browse the repository at this point in the history
…ime-exception

fix: conflict exception should extend `XGraphQL\SchemaGateway\Exception\RuntimeException` instead
  • Loading branch information
vuongxuongminh authored Mar 24, 2024
2 parents 10d84a2 + 4f7a1b6 commit e67df1e
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 e67df1e

Please sign in to comment.