JobDoesNotExistException.php 563 B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Gearman Bundle for Symfony2
  4. *
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. *
  8. * Feel free to edit as you please, and have fun.
  9. *
  10. * @author Marc Morera <yuhu@mmoreram.com>
  11. */
  12. namespace Mmoreram\GearmanBundle\Exceptions;
  13. use Mmoreram\GearmanBundle\Exceptions\Abstracts\AbstractGearmanException;
  14. /**
  15. * GearmanBundle can't find job specified as Gearman format Exception
  16. *
  17. * @since 2.3.1
  18. */
  19. class JobDoesNotExistException extends AbstractGearmanException
  20. {
  21. }