001    /*
002     * Licensed to the Apache Software Foundation (ASF) under one or more contributor license
003     * agreements. See the NOTICE file distributed with this work for additional information regarding
004     * copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the
005     * "License"); you may not use this file except in compliance with the License. You may obtain a
006     * copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable
007     * law or agreed to in writing, software distributed under the License is distributed on an "AS IS"
008     * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
009     * for the specific language governing permissions and limitations under the License.
010     */
011    package javax.portlet.faces;
012    
013    import javax.faces.FacesException;
014    
015    /**
016     * Thrown when the bridge's <code>doFacesRequest</code> method is called
017     * and the bridge is in an uninitialized state.
018     */
019    
020    public class BridgeUninitializedException extends BridgeException
021    {
022      //TODO: Update to use static serialVersionUID ala other exceptions
023      //   when we figure out how to get maven to generate.
024    
025      public BridgeUninitializedException()
026      {
027        super();
028      }
029    
030      public BridgeUninitializedException(String message)
031      {
032        super(message);
033      }
034    
035      public BridgeUninitializedException(String message, Throwable cause)
036      {
037        super(message, cause);
038      }
039    
040      public BridgeUninitializedException(Throwable cause)
041      {
042        super(cause);
043      }
044    }