QueryException.php 458 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Lithium: the most rad php framework
  4. *
  5. * @copyright Copyright 2013, Union of RAD (http://union-of-rad.org)
  6. * @license http://opensource.org/licenses/bsd-license.php The BSD License
  7. */
  8. namespace lithium\data\model;
  9. /**
  10. * The `QueryException` is thrown when a CRUD operation on the database returns an
  11. * error.
  12. *
  13. * @see lithium\data\model\Query
  14. */
  15. class QueryException extends \RuntimeException {
  16. protected $code = 500;
  17. }
  18. ?>