13 lines
166 B
PHP
13 lines
166 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception MissingParameterException.
|
|
*/
|
|
class MissingParameterException extends RuntimeException
|
|
{
|
|
}
|