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