/**
  * Class constructor. Instantiates a new {@code RemoteDigiMeshDevice} object
  * with the given local {@code DigiMeshDevice} which contains the connection
  * interface to be used.
  *
  * @param localXBeeDevice The local DigiMesh device that will behave as
  *                        connection interface to communicate with this
  *                        remote DigiMesh device.
  * @param addr64 The 64-bit address to identify this remote DigiMesh 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 RemoteDigiMeshDevice(DigiMeshDevice localXBeeDevice, XBee64BitAddress addr64)
     : base(localXBeeDevice, addr64)
 {
 }
 /**
  * Class constructor. Instantiates a new {@code RemoteDigiMeshDevice} object
  * with the given local {@code DigiMeshDevice} which contains the connection
  * interface to be used.
  *
  * @param localXBeeDevice The local DigiMesh device that will behave as
  *                        connection interface to communicate with this
  *                        remote DigiMesh device.
  * @param addr64 The 64-bit address to identify this remote DigiMesh 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 RemoteDigiMeshDevice(DigiMeshDevice localXBeeDevice, XBee64BitAddress addr64)
     : base(localXBeeDevice, addr64)
 {
 }