001/**
002 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003 *
004 * Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
005 *
006 * The contents of this file are subject to the terms
007 * of the Common Development and Distribution License
008 * (the License). You may not use this file except in
009 * compliance with the License.
010 *
011 * You can obtain a copy of the License at
012 * https://opensso.dev.java.net/public/CDDLv1.0.html or
013 * opensso/legal/CDDLv1.0.txt
014 * See the License for the specific language governing
015 * permission and limitations under the License.
016 *
017 * When distributing Covered Code, include this CDDL
018 * Header Notice in each file and include the License file
019 * at opensso/legal/CDDLv1.0.txt.
020 * If applicable, add the following below the CDDL Header,
021 * with the fields enclosed by brackets [] replaced by
022 * your own identifying information:
023 * "Portions Copyrighted [year] [name of copyright owner]"
024 *
025 * $Id: WSFederationException.java,v 1.3 2008/06/25 05:48:04 qcheng Exp $
026 *
027 */
028
029package com.sun.identity.wsfederation.common;
030
031import com.sun.identity.shared.locale.L10NMessageImpl;
032
033/**
034 * This class is an extension point for all WS-Federation related exceptions.
035 * It also handles message localization in WS-Federation exceptions.
036 *
037 * @supported.all.api
038 */
039public class WSFederationException extends L10NMessageImpl {
040    /**
041     * Constructs a new <code>WSFederationException</code> without a nested
042     * <code>Throwable</code>.
043     * @param rbName Resource Bundle Name to be used for getting
044     * localized error message.
045     * @param errorCode Key to resource bundle. You can use
046     * <pre>
047     * ResourceBundle rb = ResourceBunde.getBundle (rbName,locale);
048     * String localizedStr = rb.getString(errorCode);
049     * </pre>
050     * @param args arguments to message. If it is not present pass them
051     * as null
052     * 
053     */
054    public WSFederationException(String rbName, String errorCode, 
055        Object[] args) {
056        super(rbName, errorCode, args);
057    }
058    
059    /**
060     * Constructs a new <code>WSFederationException</code> with the given
061     * message.
062     *
063     * @param message message for this exception. This message can be later
064     * retrieved by <code>getMessage()</code> method.
065     * 
066     */
067    public WSFederationException(String message) {
068        super(message);
069    }
070    
071    /**
072     * Constructs an <code>WSFederationException</code> with given
073     * <code>Throwable</code>.
074     *
075     * @param t Exception nested in the new exception.
076     * 
077     */
078    public WSFederationException(Throwable t) {
079        super(t);
080    }
081}




























































Copyright © 2010-2017, ForgeRock All Rights Reserved.