11 lines
138 B
PHP
11 lines
138 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Nih\CommandBuilder;
|
|
|
|
use RuntimeException;
|
|
|
|
class CommandException extends RuntimeException
|
|
{}
|