final String lookup = xmlStringDecode(tag, LOOKUP, XML_STOP);
throw new SymbolNotFoundException(lookup);
}
// decode DOM
TextValue guid;
try {
guid = ValueBuilder.newText(xmlStringDecode(tag, GUID, XML_STOP));
} catch (Exception e) {
//return Instrument.NULL_INSTRUMENT;
return null;
}
final TextValue symbolReal = ValueBuilder.newText(xmlStringDecode(tag, SYMBOL_REALTIME, XML_STOP));
final byte exchCode = xmlByteDecode(tag, EXCHANGE_DDF, XML_PASS);
final byte baseCode = xmlByteDecode(tag, BASE_CODE_DDF, XML_STOP);
final String codeCFI = xmlStringDecode(tag, SYMBOL_CODE_CFI, XML_PASS);
final String zoneCode = xmlStringDecode(tag, TIME_ZONE_DDF, XML_STOP);
final String symbolComment = xmlStringDecode(tag, SYMBOL_COMMENT,