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