Files
datatable.directory/porklib/Exceptions/ViewException.php
T
2018-07-08 17:34:50 +02:00

15 lines
237 B
PHP

<?php
namespace MightyPork\Exceptions;
class ViewException extends RuntimeException
{
public $captured;
public function __construct(\Exception $cause, $captured)
{
$this->captured = $captured;
parent::__construct($cause);
}
}