for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BEAR\Resource;
use BEAR\Resource\Exception\JsonSchemaException;
use Override;
final class JsonSchemaRequestExceptionNullHandler implements JsonSchemaRequestExceptionHandlerInterface
{
/**
* {@inheritDoc}
*/
#[Override]
public function handleRequestException(
array $arguments,
ResourceObject $ro,
JsonSchemaException $e,
string $schemaFile,
) {
throw $e;
}