inital commit
[pharext/pharext.org] / app / Github / Exception / StateNotSet.php
1 <?php
2
3 namespace app\Github\Exception;
4
5 use app\Github\Exception\StateException;
6
7 class StateNotSet extends \Exception implements StateException
8 {
9 function __construct($previous = null) {
10 parent::__construct("State is not set", 0, $previous);
11 }
12 }