AbstractGearmanException.php 281 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\Abstracts;
  9. use Exception;
  10. /**
  11. * Abstract gearman exception
  12. */
  13. abstract class AbstractGearmanException extends Exception
  14. {
  15. }