1 package org.exoplatform.services.portletcontainer; 2 3 7 8 15 public class PortletContainerException extends Exception { 16 17 public PortletContainerException() { 18 } 19 20 public PortletContainerException(Throwable cause) { 21 super(cause.getMessage()); 22 cause.printStackTrace() ; 23 } 24 25 public PortletContainerException(String message) { 26 super(message); 27 } 28 29 public PortletContainerException(String message, Throwable cause) { 30 super(message); 31 cause.printStackTrace() ; 32 } 33 34 } 35 | Popular Tags |