/**
  * Class constructor. Instantiates a new {@code RemoteDigiPointDevice} object
  * with the given local {@code DigiPointDevice} which contains the connection
  * interface to be used.
  *
  * @param localXBeeDevice The local point-to-multipoint device that will behave as
  *                        connection interface to communicate with this
  *                        remote point-to-multipoint device.
  * @param addr64 The 64-bit address to identify this remote point-to-multipoint
  *               device.
  *
  * @throws ArgumentException if {@code localXBeeDevice.isRemote() == true}.
  * @throws ArgumentNullException if {@code localXBeeDevice == null} or
  *                              if {@code addr64 == null}.
  *
  * @see com.digi.xbee.api.models.XBee64BitAddress
  */
 public RemoteDigiPointDevice(DigiPointDevice localXBeeDevice, XBee64BitAddress addr64)
     : base(localXBeeDevice, addr64)
 {
 }
 /**
  * Class constructor. Instantiates a new {@code RemoteDigiPointDevice} object
  * with the given local {@code DigiPointDevice} which contains the connection
  * interface to be used.
  *
  * @param localXBeeDevice The local point-to-multipoint device that will behave as
  *                        connection interface to communicate with this
  *                        remote point-to-multipoint device.
  * @param addr64 The 64-bit address to identify this remote point-to-multipoint
  *               device.
  *
  * @throws ArgumentException if {@code localXBeeDevice.isRemote() == true}.
  * @throws ArgumentNullException if {@code localXBeeDevice == null} or
  *                              if {@code addr64 == null}.
  *
  * @see com.digi.xbee.api.models.XBee64BitAddress
  */
 public RemoteDigiPointDevice(DigiPointDevice localXBeeDevice, XBee64BitAddress addr64)
     : base(localXBeeDevice, addr64)
 {
 }