/**
  * @param username
  * @throws Exception
  */
 public void Delete(String username) throws Exception {
   try {
     clsMapperAccount mapper = new clsMapperAccount();
     mapper.AccountDelete(username);
   } catch (Exception ex) {
     throw ex;
   }
 }