1 16 package org.apache.cocoon.forms.binding; 17 18 import org.apache.cocoon.util.location.LocatedException; 19 import org.apache.cocoon.util.location.Location; 20 21 26 public class BindingException extends LocatedException { 27 28 public BindingException(String message, Location location) { 29 super(message, location); 30 } 32 33 public BindingException(String message, Throwable cause, Location location) { 34 super(message, cause, location); 35 } 37 38 public BindingException(String message, Throwable cause) { 39 super(message, cause); 40 } 42 43 public BindingException(String message) { 44 super(message); 45 } 47 48 } 49 | Popular Tags |