for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
namespace Json\Exception;
use RuntimeException;
use Exception;
class JsonSyntaxException extends RuntimeException implements JsonException
{
public function __construct(
$message = "Syntax error.",
$code = 4,
Exception $previous = null
) {
parent::__construct(
$message,
$code,
$previous
);
}