initial
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace MightyPork\Exceptions;
|
||||
|
||||
class ViewException extends RuntimeException
|
||||
{
|
||||
public $captured;
|
||||
|
||||
public function __construct(\Exception $cause, $captured)
|
||||
{
|
||||
$this->captured = $captured;
|
||||
parent::__construct($cause);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user