LimeConstraintException.php 708 B

1234567891011121314151617181920212223
  1. <?php
  2. /*
  3. * This file is part of the Lime test framework.
  4. *
  5. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  6. * (c) Bernhard Schussek <bernhard.schussek@symfony-project.com>
  7. *
  8. * This source file is subject to the MIT license that is bundled
  9. * with this source code in the file LICENSE.
  10. */
  11. /**
  12. * This exception is thrown when a constraint fails.
  13. *
  14. * The message of the exception contains the detailed description why the
  15. * constraint failed.
  16. *
  17. * @package Lime
  18. * @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
  19. * @version SVN: $Id: LimeConstraintException.php 23701 2009-11-08 21:23:40Z bschussek $
  20. */
  21. class LimeConstraintException extends Exception {}