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