blob: 57286233be5e501165744ffe404a3e165c1ef1a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
/**
* @author: Alexander Kiryukhin <alexander@kiryukhin.su>
* @license: MIT
*/
namespace NeonXP\Dotenv\Exception;
/**
* Class RuntimeException
* @package NeonXP\Dotenv\Exception
*/
class RuntimeException extends \Exception
{
}
|