BindTransmitterResp(ByteBuffer bb) throws PduException {
   super(bb);
   try {
     systemId = bb.removeCString();
   } catch (TerminatingNullNotFoundException e) {
     throw new PduException("System id parsing failed.", e);
   }
 }