package org.bodington.servlet;

import javax.servlet.ServletException;

/**
 * This class should be thrown when Bodington can't get access to BuildingServer.
 * This allows it to be handled by tomcat.
 * @author buckett
 */
public class BuildingServerUnavailableException extends ServletException
    {

    /**
     * Create a new exceptoin.
     * @param message The error message.
     */
    public BuildingServerUnavailableException(String message)
        {
        super(message);
        }


    }
