AuthenticationNotSupportedException.java :  » Apache-Harmony-Java-SE » javax-package » javax » naming » Java Open Source

Java Open Source » Apache Harmony Java SE » javax package 
javax package » javax » naming » AuthenticationNotSupportedException.java
/* 
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package javax.naming;

/**
 * An <code>AuthenticationNotSupportedException</code> is the
 * <code>NamingSecurityException</code> used when the authentication required
 * is not available.
 * <p>
 * Multithreaded access to an <code>AuthenticationNotSupportedException</code>
 * instance is only safe when client code locks the object first.
 * </p>
 */
public class AuthenticationNotSupportedException extends
        NamingSecurityException {

    private static final long serialVersionUID = -7149033933259492300L;

    /**
     * Constructs an <code>AuthenticationNotSupportedException</code> instance
     * with all data initialized to null.
     */
    public AuthenticationNotSupportedException() {
        super();
    }

    /**
     * Constructs an <code>AuthenticationNotSupportedException</code> instance
     * using the specified message.
     * 
     * @param s
     *            The detail message for the exception. It may be null.
     */
    public AuthenticationNotSupportedException(String s) {
        super(s);
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.