10 lines
196 B
PHP
10 lines
196 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\Country\Exception;
|
||
|
|
|
||
|
|
use InvalidArgumentException;
|
||
|
|
|
||
|
|
class CountryInvalidArgumentException extends InvalidArgumentException implements CountryExceptionInterface
|
||
|
|
{
|
||
|
|
}
|