13 lines
198 B
PHP
13 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
/**
|
|
* Exception thrown if the env variable is not set or does not exist.
|
|
*/
|
|
class MissingEnvVariableException extends RuntimeException
|
|
{
|
|
}
|