super.setClassLoader(classLoader);
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
try {
ObjectInputStream is = new ObjectInputStreamExt(bais, classLoader);
try {
content = is.readObject();
} finally {
is.close();
}
} catch (IOException e) {
throw new RuntimeException("Could not deserialize content", e);