src/Exception/AppException.php line 9

Open in your IDE?
  1. <?php
  2. namespace App\Exception;
  3. use Throwable;
  4. class AppException extends \Exception
  5. {
  6.     public function __construct($message ""$code 0Throwable $previous null)
  7.     {
  8.         parent::__construct(ucfirst($message), $code$previous);
  9.     }
  10. }