Lines Matching refs:Throwable
5 interface Throwable extends Stringable interface
18 public function getPrevious(): ?Throwable;
23 class Exception implements Throwable
39 private ?Throwable $previous = null;
43 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
59 final public function getPrevious(): ?Throwable {}
76 ?Throwable $previous = null
82 class Error implements Throwable
98 private ?Throwable $previous = null;
104 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
131 final public function getPrevious(): ?Throwable {}