1 16 package org.apache.cocoon.forms; 17 18 import org.apache.cocoon.util.location.LocatedRuntimeException; 19 import org.apache.cocoon.util.location.Location; 20 21 27 public class FormsRuntimeException extends LocatedRuntimeException { 28 29 public FormsRuntimeException(String message, Location location) { 30 super(message, location); 31 } 32 33 public FormsRuntimeException(String message, Throwable cause, Location location) throws LocatedRuntimeException { 34 super(message, cause, location); 35 } 36 37 public FormsRuntimeException(String message, Throwable cause) throws LocatedRuntimeException { 38 super(message, cause); 39 } 40 41 public FormsRuntimeException(String message) { 42 super(message); 43 } 44 } 45 | Popular Tags |