1 5 6 package org.infohazard.maverick.flow; 7 8 import javax.servlet.ServletException ; 9 10 13 public class ConfigException extends ServletException  14 { 15 17 public ConfigException() 18 { 19 super(); 20 } 21 22 24 public ConfigException(String message) 25 { 26 super(message); 27 } 28 29 31 public ConfigException(String message, Throwable rootCause) 32 { 33 super(message, rootCause); 34 } 35 36 38 public ConfigException(Throwable rootCause) 39 { 40 super(rootCause); 41 } 42 } 43 44 | Popular Tags |