BaseException.php 318 B

1234567891011121314151617181920
  1. <?php declare(strict_types=1);
  2. /**
  3. * DuckPhp
  4. * From this time, you never be alone~
  5. */
  6. namespace DuckPhpBenchmark\System;
  7. use DuckPhp\ThrowOn\ThrowOn;
  8. use DuckPhpBenchmark\System\App;
  9. class BaseException
  10. {
  11. use ThrowOn;
  12. public function display($ex)
  13. {
  14. App::OnDefaultException($ex);
  15. }
  16. }