FaultTemplate.php 469 B

123456789101112131415161718192021222324
  1. <?php
  2. /*
  3. * This file is part of the Supervisor package.
  4. *
  5. * (c) Márk Sági-Kazár <mark.sagikazar@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Supervisor\Exception\Fault;
  11. use Supervisor\Exception\Fault;
  12. /**
  13. * Implements {FAULT_NAME} Fault exception
  14. *
  15. * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
  16. */
  17. class {FaultName} extends Fault
  18. {
  19. }