Files
monica/app/Exceptions/MissingEnvVariableException.php
2018-12-23 09:01:03 -05:00

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
{
}