10 lines
120 B
PHP
10 lines
120 B
PHP
|
<?php
|
||
|
|
||
|
namespace Icinga\Exception;
|
||
|
|
||
|
use RuntimeException;
|
||
|
|
||
|
class MissingParameterException extends RuntimeException
|
||
|
{
|
||
|
}
|