for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Deserializers\Exceptions;
use Exception;
use RuntimeException;
/**
* @since 1.0
*
* @license GPL-2.0-or-later
* @author Jeroen De Dauw < [email protected] >
*/
class DeserializationException extends RuntimeException {
* @param string $message
* @param Exception|null $previous
public function __construct( $message = '', Exception $previous = null ) {
parent::__construct( $message, 0, $previous );
}