ObjectInputStream objectIn = new ObjectInputStream(bytesIn);
return objectIn.readObject();
}
catch (IOException e)
{
throw new JRRuntimeException(e);
}
catch (ClassNotFoundException e)
{
throw new JRRuntimeException(e);
}
catch (Base64FormatException e)
{
throw new JRRuntimeException(e);
}
}