public BigInteger readULongLong() throws CorbaBindingException {
try {
return new BigInteger(stream.read_ulonglong() + "");
} catch (org.omg.CORBA.MARSHAL ex) {
LOG.log(Level.SEVERE, "CorbaObjectReader: could not read unsigned long long");
throw new CorbaBindingException("CorbaObjectReader: readULongLong MARSHAL exception", ex);
}
}