1: <?php
2: /**
3: * MissingEntityException file
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: * For full copyright and license information, please see the LICENSE.txt
10: * Redistributions of files must retain the above copyright notice.
11: *
12: * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
13: * @link https://cakephp.org CakePHP(tm) Project
14: * @since 3.0.0
15: * @license https://opensource.org/licenses/mit-license.php MIT License
16: */
17: namespace Cake\ORM\Exception;
18:
19: use Cake\Core\Exception\Exception;
20:
21: /**
22: * Exception raised when an Entity could not be found.
23: */
24: class MissingEntityException extends Exception
25: {
26:
27: protected $_messageTemplate = 'Entity class %s could not be found.';
28: }
29: