datatable.directory codebase
https://datatable.directory/
15 lines
237 B
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);
|
||
|
}
|
||
|
}
|