LimeMockInvocationMatcherException.php 847 B

123456789101112131415161718192021222324252627
  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. * Exception thrown by all invokation matchers.
  13. *
  14. * This exception is thrown by the method invoke() of all invokation matchers
  15. * implementing LimeMockInvocationMatcherInterface if the invokation is not
  16. * accepted.
  17. *
  18. * @package Lime
  19. * @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
  20. * @version SVN: $Id: LimeMockInvocationMatcherException.php 23701 2009-11-08 21:23:40Z bschussek $
  21. * @see LimeMockInvocationMatcherInterface
  22. */
  23. class LimeMockInvocationMatcherException extends Exception
  24. {
  25. }