for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace drupol\valuewrapper\Object\Exception;
use Exception;
/**
* Class ExceptionObject.
*/
class ExceptionObject extends AbstractExceptionObject
{
* ExceptionObject constructor.
*
* @param Exception $value
public function __construct(Exception $value)
parent::__construct($value);
}