View Javadoc
1 package org.jdiseq.filter; 2 3 /*** 4 * Exception situations when accessing configuration 5 * @author Trond Andersen <trondandersen@c2i.net> 6 * @version $Id: InvalidConfigurationException.java,v 1.4 2003/07/22 00:07:22 trondandersen Exp $ 7 * @since 1.0 8 */ 9 public class InvalidConfigurationException extends Exception { 10 11 /*** 12 * InvalidConfigurationException with a message 13 * @param message Exception description 14 */ 15 public InvalidConfigurationException(String message) { 16 super(message); 17 } 18 19 /*** 20 * Instansiate exception with a nested exception 21 * @param throwable Nested exception 22 */ 23 public InvalidConfigurationException(Throwable throwable) { 24 super(throwable); 25 } 26 }

This page was automatically generated by Maven