Skip to content

Commit 0821a99

Browse files
committed
Add InvalidCommandException
1 parent 7e67205 commit 0821a99

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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+
}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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+
}

0 commit comments

Comments
 (0)