All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sun.identity.cli.CLIException Maven / Gradle / Ivy

There is a newer version: 15.1.3
Show newest version
/**
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
 *
 * Copyright (c) 2006 Sun Microsystems Inc. All Rights Reserved
 *
 * The contents of this file are subject to the terms
 * of the Common Development and Distribution License
 * (the License). You may not use this file except in
 * compliance with the License.
 *
 * You can obtain a copy of the License at
 * https://opensso.dev.java.net/public/CDDLv1.0.html or
 * opensso/legal/CDDLv1.0.txt
 * See the License for the specific language governing
 * permission and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL
 * Header Notice in each file and include the License file
 * at opensso/legal/CDDLv1.0.txt.
 * If applicable, add the following below the CDDL Header,
 * with the fields enclosed by brackets [] replaced by
 * your own identifying information:
 * "Portions Copyrighted [year] [name of copyright owner]"
 *
 * $Id: CLIException.java,v 1.4 2009/11/10 19:01:05 veiming Exp $
 *
 */

/**
 * Portions Copyrighted 2012-2014 ForgeRock AS
 * Portions Copyrighted 2014 Nomura Research Institute, Ltd
 */
package com.sun.identity.cli;

import com.sun.identity.shared.locale.L10NMessage;
import java.util.Locale;

/**
 * Commandline Interface Exception.
 */
public class CLIException extends Exception {
    private int exitCode = 0;
    private String subcommandName;

    /**
     * Constructs a CLI Exception.
     *
     * @param message Exception message.
     * @param exitCode Exit code.
     * @param subcommandName Sub Command Name.
     */
    public CLIException(String message, int exitCode, String subcommandName) {
        super(message);
        this.exitCode = exitCode;
        this.subcommandName = subcommandName;
    }

    /**
     * Constructs a CLI Exception.
     *
     * @param message Exception message.
     * @param exitCode Exit code.
     */
    public CLIException(String message, int exitCode) {
        super(message);
        this.exitCode = exitCode;
    }

    /**
     * Constructs a CLI Exception.
     *
     * @param cause Throwable object.
     * @param exitCode Exit code.
     */
    public CLIException(Throwable cause, int exitCode) {
        super(cause);
        this.exitCode = exitCode;
    }

    /**
     * Constructs a CLI Exception.
     *
     * @param cause Throwable object.
     * @param exitCode Exit code.
     * @param subcommandName Sub Command Name.
     */
    public CLIException(Throwable cause, int exitCode, String subcommandName) {
        super(cause);
        this.exitCode = exitCode;
        this.subcommandName = subcommandName;
    }

    /**
     * Returns exit code.
     *
     * @return exit code.
     */
    public int getExitCode() {
        return exitCode;
    }

    /**
     * Returns sub command name.
     *
     * @return sub command name.
     */
    public String getSubcommandName() {
        return subcommandName;
    }

    /**
     * Returns localized message.
     *
     * @param locale Locale.
     * @return localized message.
     */
    public String getL10NMessage(Locale locale) {
        if ((getCause() != null) && (getCause() instanceof L10NMessage)) {
            return ((L10NMessage)getCause()).getL10NMessage(locale);
        }
        return getMessage();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy