Example usage for Java javax.servlet UnavailableException fields, constructors, methods, implement or subclass
The text is from its open source code.
UnavailableException(String msg) Constructs a new exception with a descriptive message indicating that the servlet is permanently unavailable. | |
UnavailableException(Servlet servlet, String msg) | |
UnavailableException(String msg, int seconds) Constructs a new exception with a descriptive message indicating that the servlet is temporarily unavailable and giving an estimate of how long it will be unavailable. |
String | getMessage() Returns the detail message string of this throwable. |
int | getUnavailableSeconds() Returns the number of seconds the servlet expects to be temporarily unavailable. |
boolean | isPermanent() Returns a boolean indicating whether the servlet is permanently unavailable. |