10 lines
173 B
PHP
10 lines
173 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\Country\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
class CountryNotFoundException extends RuntimeException implements CountryExceptionInterface
|
||
|
|
{
|
||
|
|
}
|