MissingActionException.php 816 B

12345678910111213141516171819202122232425262728
  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.1.0
  12. * @license https://opensource.org/licenses/mit-license.php MIT License
  13. */
  14. namespace Cake\Mailer\Exception;
  15. use Cake\Core\Exception\Exception;
  16. /**
  17. * Missing Action exception - used when a mailer action cannot be found.
  18. */
  19. class MissingActionException extends Exception
  20. {
  21. /**
  22. * @inheritDoc
  23. */
  24. protected $_messageTemplate = 'Mail %s::%s() could not be found, or is not accessible.';
  25. }