some initial work on New Table page

This commit is contained in:
2018-07-19 22:30:32 +02:00
parent eeaa837c29
commit ba721592cd
4 changed files with 111 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
namespace FlowBox\Exceptions;
class ViewException extends FBRuntimeException
{
public $captured;
public function __construct(\Exception $cause, $captured)
{
$this->captured = $captured;
parent::__construct($cause);
}
}