Package com.dotcms.repackage.javax.portlet

Examples of com.dotcms.repackage.javax.portlet.UnavailableException


        getExpCache());

      cachePortlet.init(portletConfig);
    }
    catch (ClassNotFoundException cnofe) {
      throw new UnavailableException(cnofe.getMessage());
    }
    catch (InstantiationException ie) {
      throw new UnavailableException(ie.getMessage());
    }
    catch (IllegalAccessException iae) {
      throw new UnavailableException(iae.getMessage());
    }

    return cachePortlet;
  }
View Full Code Here

TOP

Related Classes of com.dotcms.repackage.javax.portlet.UnavailableException

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.