13 lines
200 B
PHP
13 lines
200 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception thrown if the given value is not in the list of authorized values.
|
|
*/
|
|
class WrongValueException extends RuntimeException
|
|
{
|
|
}
|