001    //$HeadURL: svn+ssh://rbezema@svn.wald.intevation.org/deegree/base/tags/2.1/src/org/deegree/ogcwebservices/wass/exceptions/DoServiceException.java $
002    package org.deegree.ogcwebservices.wass.exceptions;
003    
004    import java.security.GeneralSecurityException;
005    
006    /**
007     * A <code>DoServiceException</code> class that can be used to tell the client she has not the
008     * right credentials to access the requested service.
009     * 
010     * @author <a href="mailto:bezema@lat-lon.de>Rutger Bezema</a>
011     * 
012     * @author last edited by: $Author: bezema $
013     * 
014     * @version 2.0, $Revision: 6259 $, $Date: 2007-03-20 10:15:15 +0100 (Di, 20 Mär 2007) $
015     * 
016     * @since 2.0
017     */
018    public class DoServiceException extends GeneralSecurityException {
019    
020        private static final long serialVersionUID = -6545217181758230675L;
021    
022        /**
023         * @param message
024         * @param cause
025         */
026        public DoServiceException( String message, Throwable cause ) {
027            super( message, cause );
028        }
029    
030        /**
031         * @param msg
032         */
033        public DoServiceException( String msg ) {
034            super( msg );
035        }
036    
037        /**
038         * @param cause
039         */
040        public DoServiceException( Throwable cause ) {
041            super( cause );
042        }
043    
044    }
045    
046    /***************************************************************************************************
047     * Changes to this class. What the people have been up to: $Log$
048     * Changes to this class. What the people have been up to: Revision 1.2  2006/06/19 12:47:09  schmitz
049     * Changes to this class. What the people have been up to: Updated the documentation, fixed the warnings and implemented logging everywhere.
050     * Changes to this class. What the people have been up to: Changes
051     * to this class. What the people have been up to: Revision 1.1 2006/05/30 15:11:28 bezema Changes
052     * to this class. What the people have been up to: Working on the postclient from apachecommons to
053     * place a request to the services behind the wss proxy Changes to this class. What the people have
054     * been up to:
055     * 
056     **************************************************************************************************/