/**
  * Build our NetConfMessageRPC instance
  *
  * @param $response
  */
 public function __construct($response)
 {
     parent::__construct($response);
     $this->setMessageID();
     $this->setRPCError();
 }
 /**
  * Build our NetConfMessageRecvHello instance
  *
  * @param $response
  */
 public function __construct($response)
 {
     parent::__construct($response);
     $this->setSessionID();
     $this->setTheirCapabilities();
 }