franta-hg@21: package info.glogalcode.parameterLister; franta-hg@21: franta-hg@21: /** franta-hg@21: * franta-hg@21: * @author Ing. František Kučera (frantovo.cz) franta-hg@21: */ franta-hg@21: public class OutputModuleFactoryException extends ParameterListerException { franta-hg@21: franta-hg@21: public OutputModuleFactoryException() { franta-hg@21: } franta-hg@21: franta-hg@21: public OutputModuleFactoryException(String message) { franta-hg@21: super(message); franta-hg@21: } franta-hg@21: franta-hg@21: public OutputModuleFactoryException(Throwable cause) { franta-hg@21: super(cause); franta-hg@21: } franta-hg@21: franta-hg@21: public OutputModuleFactoryException(String message, Throwable cause) { franta-hg@21: super(message, cause); franta-hg@21: } franta-hg@21: franta-hg@21: }