LimeMockException.php 788 B

1234567891011121314151617181920212223242526
  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. * An exception thrown from mock objects.
  13. *
  14. * This exception is generally thrown if you invoke an unexpected method on
  15. * a mock object while in replay mode. Generally this exception should bubble
  16. * up to notify the user about test errors.
  17. *
  18. * @package Lime
  19. * @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
  20. * @version SVN: $Id: LimeMockException.php 23701 2009-11-08 21:23:40Z bschussek $
  21. */
  22. class LimeMockException extends Exception
  23. {
  24. }