Package edu.indiana.extreme.gfac.utils

Examples of edu.indiana.extreme.gfac.utils.GfacGUIException


      }

      return ServiceConstants.SUCCESS_STATUS;

    } catch (Exception e) {
      String errormessage = new GfacGUIException(e).getMessage();
      super.setErrorString(errormessage);
      FacesMessage message = new FacesMessage(
          FacesMessage.SEVERITY_ERROR,
          e.getClass().getName(),errormessage);
      FacesContext.getCurrentInstance().addMessage(
View Full Code Here


      // To remove
      infoUtils.removeObject(super.getContext().getRegService(), applicationName);
    } catch (Exception e) {
      logger.severe(e.getLocalizedMessage());
      super.setErrorString(e.getLocalizedMessage());
      throw  new GfacGUIException(e);
    }
  }
View Full Code Here

      return (ApplicationBean)infoUtils.getBeanObjectInfo(super.getContext().getRegService(), name,this);

    } catch (Exception e) {
      logger.severe(e.getLocalizedMessage());
      super.setErrorString(e.getLocalizedMessage());
      throw  new GfacGUIException(e);
    }

  }
View Full Code Here

TOP

Related Classes of edu.indiana.extreme.gfac.utils.GfacGUIException

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.