jp.terasoluna.fw.web.thin
Class ServerBlockageException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by javax.servlet.ServletException
              extended by jp.terasoluna.fw.web.thin.ServerBlockageException
All Implemented Interfaces:
java.io.Serializable

public class ServerBlockageException
extends javax.servlet.ServletException

Server blockage exception class.

When the framework detects that the server is in blocked state, this class is used to notify the blocked state of the server. ServerBlockageControlFilter generates this exception and the error page is displayed through the container.

Configuration example
Provide the following description in the deployment descriptor (web.xml).
 <web-app>
   ...
   <error-page>
     <exception-type>
       jp.terasoluna.exception.ServerBlockageException
     </exception-type>
     <location>/blockageexception.html</location>
   </error-page>
   ...
 </web-app>
 

See Also:
ServerBlockageControlFilter, ServerBlockageController, Serialized Form

Field Summary
private static long serialVersionUID
          Serial version ID
 
Constructor Summary
ServerBlockageException()
           
 
Method Summary
 
Methods inherited from class javax.servlet.ServletException
getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

serialVersionUID

private static final long serialVersionUID
Serial version ID

See Also:
Constant Field Values
Constructor Detail

ServerBlockageException

public ServerBlockageException()