WorkerDoesNotExistException.php 382 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 Mmoreram\GearmanBundle\Exceptions\Abstracts\AbstractGearmanException;
  10. /**
  11. * GearmanBundle can't find worker specified as Gearman format Exception
  12. */
  13. class WorkerDoesNotExistException extends AbstractGearmanException
  14. {
  15. }