/**
  * Export the customer
  */
 protected function exportCustomer()
 {
     $Customer = $this->Order->getCustomer();
     $Billing = $this->Order->getBilling();
     $Shipping = $this->Order->getShipping();
     //
     try {
         $PlentymarketsExportEntityOrderCustomer = new PlentymarketsExportEntityCustomer($Customer, $Billing, $Shipping);
         $PlentymarketsExportEntityOrderCustomer->export();
     } catch (PlentymarketsExportEntityException $E) {
         // Save the error
         $this->setError(self::CODE_ERROR_CUSTOMER);
         // Throw another exception
         throw new PlentymarketsExportEntityException('The order with the number »' . $this->Order->getNumber() . '« could not be exported (' . $E->getMessage() . ')', 4100);
     }
     //
     $this->PLENTY_customerID = $PlentymarketsExportEntityOrderCustomer->getPlentyCustomerID();
     $this->PLENTY_addressDispatchID = $PlentymarketsExportEntityOrderCustomer->getPlentyAddressDispatchID();
 }