MissingDatasourceConfigException.php 828 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * PHP 5
  4. *
  5. * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
  6. * Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  7. *
  8. * Licensed under The MIT License
  9. * Redistributions of files must retain the above copyright notice.
  10. *
  11. * @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
  12. * @link http://book.cakephp.org/2.0/en/development/testing.html
  13. * @since CakePHP(tm) v 3.0
  14. * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
  15. */
  16. namespace Cake\Error;
  17. /**
  18. * Exception class to be thrown when a datasource configuration is not found
  19. */
  20. class MissingDatasourceConfigException extends Exception {
  21. protected $_messageTemplate = 'The datasource configuration "%s" was not found.';
  22. }