1: <?php
2: /**
3: * Class Config
4: */
5:
6: namespace Jlab\Eloglib;
7:
8:
9:
10: /**
11: * An Exception that that indicates a problem outside the control of the client using the software package/library,
12: * such as a bug in the client API implementation. This RuntimeException indicates a problem that is not recoverable
13: * within the package,
14: *
15: * @package Jlab\Eloglib
16: */
17: class LogRuntimeException extends \Exception
18: {
19:
20: }