FailedException.php 167 B

123456789101112
  1. <?php
  2. declare(strict_types=1);
  3. namespace catcher\exceptions;
  4. use catcher\Code;
  5. class FailedException extends CatchException
  6. {
  7. protected $code = Code::FAILED;
  8. }