Lines Matching refs:Throwable
7 interface Throwable extends Stringable interface
20 public function getPrevious(): ?Throwable;
25 class Exception implements Throwable
41 private ?Throwable $previous = null;
45 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
61 final public function getPrevious(): ?Throwable {}
78 ?Throwable $previous = null
84 class Error implements Throwable
100 private ?Throwable $previous = null;
106 public function __construct(string $message = "", int $code = 0, ?Throwable $previous = null) {}
133 final public function getPrevious(): ?Throwable {}