Package net.naijatek.myalumni.framework.exceptions

Examples of net.naijatek.myalumni.framework.exceptions.MyAlumniException


  public void softDeleteObject(String id, String lastModifiedBy) throws MyAlumniException {
    try{
      softDelete(load(XlatGroupVO.class, id), lastModifiedBy);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete system group because " + e.getMessage());
    }
  }
View Full Code Here


  public void hardDeleteObject(String id) throws MyAlumniException {
    try{
      hardDelete(load(ReminisceVO.class, id));
    } catch(Exception e){
      throw new MyAlumniException("Could not delete ReminisceVO because " + e.getMessage());
    }
  }
View Full Code Here

  public void softDeleteObject(String id, String lastModifiedBy) throws MyAlumniException {
    try{
      softDelete(load(ReminisceVO.class, id), lastModifiedBy);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete class news because " + e.getMessage());
    }
  }
View Full Code Here

  public void softDelete(String id, String lastModifiedBy) throws MyAlumniException{
    try{
      xlatGroupDao.softDeleteObject(id, lastModifiedBy);
    } catch(Exception e){
      logger.error("Could not delete XlatGroupVO because " + e.getMessage());
      throw new MyAlumniException("Could not delete XlatGroupVO because " + e.getMessage());
    }
  }
View Full Code Here

  public void hardDelete(String id) throws MyAlumniException{
    try{
      xlatGroupDao.hardDeleteObject(id);
    } catch(Exception e){
      logger.error("Could not delete XlatGroupVO because " + e.getMessage());
      throw new MyAlumniException("Could not delete XlatGroupVO because " + e.getMessage());
    }
  }
View Full Code Here

 
  public void softDelete(String id, String lastModifiedBy) throws MyAlumniException{
    try{
      pmDao.softDeleteObject(id, lastModifiedBy);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete PrivateMessageVO because " + e.getMessage());
    }
  }
View Full Code Here

 
  public void hardDelete(String id) throws MyAlumniException{
    try{
      pmDao.hardDeleteObject(id);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete PrivateMessageVO because " + e.getMessage());
    }
  } 
View Full Code Here

 
  public void softDelete(String id, String lastModifiedBy) throws MyAlumniException{
    try{
      mfDao.softDeleteObject(id, lastModifiedBy);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete MessageFolderVO because " + e.getMessage());
    }
  }
View Full Code Here

 
  public void hardDelete(String id) throws MyAlumniException{
    try{
      mfDao.hardDeleteObject(id);
    } catch(Exception e){
      throw new MyAlumniException("Could not delete MessageFolderVO because " + e.getMessage());
    }
  }
View Full Code Here

  public void hardDeleteObject(String id) throws MyAlumniException {
    try{
      hardDelete(load(PrivateMessageVO.class, id));
    } catch(Exception e){
      throw new MyAlumniException("Could not delete private message because " + e.getMessage());
    }
  }
View Full Code Here

TOP

Related Classes of net.naijatek.myalumni.framework.exceptions.MyAlumniException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.