Files
monica/app/Exceptions/NoAccountException.php
T
2019-10-30 09:41:06 -04:00

13 lines
189 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
/**
* Exception thrown if the env variable is not set or does not exist.
*/
class NoAccountException extends RuntimeException
{
}