datatable.directory codebase https://datatable.directory/
datatable.directory/porklib/Exceptions/ViewException.php

15 lines
237 B

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