11 lines
116 B
PHP
11 lines
116 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Fastknife\Exception;
|
||
|
|
||
|
|
||
|
class WordException extends \RuntimeException
|
||
|
{
|
||
|
|
||
|
}
|