startPc = $this->readUnsignedShort(); $this->endPc = $this->readUnsignedShort(); $this->handlerPc = $this->readUnsignedShort(); $this->catchType = $this->readUnsignedShort(); } public function getStartPc(): int { return $this->startPc; } public function getEndPc(): int { return $this->endPc; } public function getHandlerPc(): int { return $this->handlerPc; } public function getCatchType(): int { return $this->catchType; } }