1 <?php
2
3 namespace Alo\Exception;
4
5 if (!defined('GEN_START')) {
6 http_response_code(404);
7 die();
8 }
9
10 /**
11 * Testing suite-related exceptions
12 *
13 * @author Art <a.molcanovas@gmail.com>
14 * @package TestingSuite
15 */
16 class TesterException extends AbstractException {
17
18 /**
19 * Code when the class or object is invalid
20 *
21 * @var int
22 */
23 const E_CLASS_INVALID = 101;
24
25 /**
26 * Code when the method or function name is invalid
27 *
28 * @var int
29 */
30 const E_NAME_INVALID = 102;
31 }