10 lines
182 B
PHP
10 lines
182 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Xentral\Modules\ApiAccount\Exception;
|
||
|
|
|
||
|
|
use RuntimeException;
|
||
|
|
|
||
|
|
class ApiAccountNotFoundException extends RuntimeException implements ApiAccountExceptionInterface
|
||
|
|
{
|
||
|
|
}
|