001: /*****************************************************************************
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025:
026: * The Original Software is the CVS Client Library.
027: * The Initial Developer of the Original Software is Robert Greig.
028: * Portions created by Robert Greig are Copyright (C) 2000.
029: * All Rights Reserved.
030: *
031: * If you wish your version of this file to be governed by only the CDDL
032: * or only the GPL Version 2, indicate your decision by adding
033: * "[Contributor] elects to include this software in this distribution
034: * under the [CDDL or GPL Version 2] license." If you do not indicate a
035: * single choice of license, a recipient has the option to distribute
036: * your version of this file under either the CDDL, the GPL Version 2 or
037: * to extend the choice of license to its licensees as provided above.
038: * However, if you add GPL Version 2 code and therefore, elected the GPL
039: * Version 2 license, then the option applies only if the new code is
040: * made subject to such option by the copyright holder.
041:
042: * Contributor(s): Robert Greig.
043: *****************************************************************************/package org.netbeans.lib.cvsclient.connection;
044:
045: import java.util.*;
046:
047: import org.netbeans.lib.cvsclient.util.*;
048:
049: /**
050: * This exception is thrown when a connection with the server cannot be made,
051: * for whatever reason.
052: * It may be that the username and/or password are incorrect or it could be
053: * that the port number is incorrect. Note that authentication is not
054: * restricted here to mean security.
055: * @author Robert Greig
056: */
057: public class AuthenticationException extends Exception {
058: /**
059: * The underlying cause of this exception, if any.
060: */
061: private Throwable underlyingThrowable;
062:
063: private String message;
064:
065: private String localizedMessage;
066:
067: /**
068: * Construct an AuthenticationException with a message giving more details
069: * of what went wrong.
070: * @param message the message describing the error
071: **/
072: public AuthenticationException(String message,
073: String localizedMessage) {
074: super (message);
075: this .message = message;
076: this .localizedMessage = localizedMessage;
077: }
078:
079: /**
080: * Construct an AuthenticationException with a message and an
081: * underlying exception.
082: * @param message the message describing what went wrong
083: * @param e the underlying exception
084: */
085: public AuthenticationException(String message,
086: Throwable underlyingThrowable, String localizedMessage) {
087: this (message, localizedMessage);
088: initCause(underlyingThrowable);
089: }
090:
091: /**
092: * Construct an AuthenticationException with an underlying
093: * exception.
094: * @param t the underlying throwable that caused this exception
095: */
096: public AuthenticationException(Throwable underlyingThrowable,
097: String localizedMessage) {
098: this .localizedMessage = localizedMessage;
099: initCause(underlyingThrowable);
100: }
101:
102: /**
103: * Get the underlying throwable that is responsible for this exception.
104: * @return the underlying throwable, if any (may be null).
105: */
106: public Throwable getUnderlyingThrowable() {
107: return getCause();
108: }
109:
110: public String getLocalizedMessage() {
111: if (localizedMessage == null) {
112: return message;
113: }
114: return localizedMessage;
115: }
116:
117: public String getMessage() {
118: return message;
119: }
120:
121: protected static String getBundleString(String key) {
122: String value = null;
123: try {
124: ResourceBundle bundle = BundleUtilities.getResourceBundle(
125: AuthenticationException.class, "Bundle"); //NOI18N
126: if (bundle != null) {
127: value = bundle.getString(key);
128: }
129: } catch (MissingResourceException exc) {
130: }
131: return value;
132: }
133: }
|