JobDoesNotExistException.php 303 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Gearman Bundle for Symfony2
  4. *
  5. * @author Marc Morera <yuhu@mmoreram.com>
  6. * @since 2013
  7. */
  8. namespace Mmoreram\GearmanBundle\Exceptions;
  9. use Exception;
  10. /**
  11. * GearmanBundle can't find job specified as Gearman format Exception
  12. */
  13. class JobDoesNotExistException extends Exception
  14. {
  15. }