1 16 17 package org.springframework.web.portlet.bind; 18 19 import javax.portlet.PortletException; 20 21 29 public class PortletRequestBindingException extends PortletException { 30 31 35 public PortletRequestBindingException(String msg) { 36 super(msg); 37 } 38 39 44 public PortletRequestBindingException(String msg, Throwable cause) { 45 super(msg, cause); 46 } 47 48 } 49 | Popular Tags |