MissingComponentException.php 742 B

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