134135136137138139140141
public static Class<?> classForName(String className) throws SnapshotCorruptedException { try { return Class.forName(className); } catch (ClassNotFoundException e) { throw new SnapshotCorruptedException(e); } }