Package xcat.exceptions

Examples of xcat.exceptions.NonstandardException


   */
  public void setGSH(String handle)
    throws gov.cca.CCAException {
    logger.finest("called with handle: " + handle);
    if (portGSH != null)
      throw new NonstandardException("GSH for this port is already set");
    portGSH = handle;
  }
View Full Code Here


    logger.finest("called");

    // make sure there is an individual storage service available
    int size = individualStorageServices.size();
    if (size == 0)
      throw new NonstandardException("No IndividualStorageServices have been registered");

    // retrieve the next available ISS location
    String location = (String) individualStorageServices.get(index);
    logger.finest("retrieved location: " + location);
View Full Code Here

TOP

Related Classes of xcat.exceptions.NonstandardException

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.