1 16 17 package org.springframework.web.bind; 18 19 import org.springframework.web.util.NestedServletException; 20 21 32 public class ServletRequestBindingException extends NestedServletException { 33 34 38 public ServletRequestBindingException(String msg) { 39 super(msg); 40 } 41 42 47 public ServletRequestBindingException(String msg, Throwable cause) { 48 super(msg, cause); 49 } 50 51 } 52 | Popular Tags |