10 lines
142 B
PHP
10 lines
142 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service\Remote\Edge\Exceptions;
|
|
|
|
class MissingParameterException extends \RuntimeException
|
|
{
|
|
|
|
}
|