for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CHStudio\Raven\Validator\Exception;
use RuntimeException;
use Throwable;
class ApiSchemaException extends RuntimeException implements ValidationException
{
public function __construct(
Throwable $previous
) {
$message = sprintf(
'Something went wrong with the API schema: %s.',
$previous->getMessage()
);
parent::__construct($message, 0, $previous);
}