1: <?php
2: /**
3: * MissingTableClassException class
4: *
5: * CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
6: * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
7: *
8: * Licensed under The MIT License
9: * Redistributions of files must retain the above copyright notice.
10: *
11: * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
12: * @since 3.0.0
13: * @license https://opensource.org/licenses/mit-license.php MIT License
14: */
15: namespace Cake\ORM\Exception;
16:
17: use Cake\Core\Exception\Exception;
18:
19: /**
20: * Exception raised when a Table could not be found.
21: */
22: class MissingTableClassException extends Exception
23: {
24: protected $_messageTemplate = 'Table class %s could not be found.';
25: }
26: