public void softDeleteObject(String id, String lastModifiedBy) throws MyAlumniException {
try{
softDelete(load(PrivateMessageVO.class, id), lastModifiedBy);
} catch(Exception e){
throw new MyAlumniException("Could not delete private message because " + e.getMessage());
}
}