SectionTimeoutException.php 203 B

1234567891011121314
  1. <?php
  2. namespace App\Exceptions;
  3. use Exception;
  4. class SectionTimeoutException extends Exception
  5. {
  6. //
  7. public function __construct()
  8. {
  9. parent::__construct('section timeout');
  10. }
  11. }