_init(\Magento\Downloadable\Model\ResourceModel\Link\Purchased\Item::class); parent::_construct(); } /** * Check order item id * * @return $this * @throws \Exception */ public function beforeSave() { if (null == $this->getOrderItemId()) { throw new \Exception(__('Order item id cannot be null')); } return parent::beforeSave(); } }