File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ <?php
2+ declare (strict_types=1 );
3+ /**
4+ * @author Julien Mercier-Rojas <julien@jeckel-lab.fr>
5+ * Created at : 14/11/2019
6+ */
7+
8+ namespace JeckelLab \CommandDispatcher \Exception ;
9+
10+ use RuntimeException ;
11+
12+ /**
13+ * Class CommandDispatcherException
14+ * @package JeckelLab\CommandDispatcher\Exception
15+ */
16+ abstract class CommandDispatcherException extends RuntimeException
17+ {
18+
19+ }
Original file line number Diff line number Diff line change 1+ <?php
2+ declare (strict_types=1 );
3+ /**
4+ * @author Julien Mercier-Rojas <julien@jeckel-lab.fr>
5+ * Created at : 14/11/2019
6+ */
7+
8+ namespace JeckelLab \CommandDispatcher \Exception ;
9+
10+ /**
11+ * Class InvalidCommandException
12+ * @package JeckelLab\CommandDispatcher\Exception
13+ */
14+ class InvalidCommandException extends CommandDispatcherException
15+ {
16+
17+ }
You can’t perform that action at this time.
0 commit comments