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

com.sun.messaging.jms.MQSecurityRuntimeException Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2011, 2020 Oracle and/or its affiliates. All rights reserved.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0, which is available at
 * http://www.eclipse.org/legal/epl-2.0.
 *
 * This Source Code may also be made available under the following Secondary
 * Licenses when the conditions for such availability set forth in the
 * Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
 * version 2 with the GNU Classpath Exception, which is available at
 * https://www.gnu.org/software/classpath/license.html.
 *
 * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
 */

package com.sun.messaging.jms;

import jakarta.jms.JMSSecurityException;

import com.sun.messaging.jmq.jmsclient.logging.Loggable;

/**
 * This class is the MQ-specific implementation of jakarta.jms.JMSSecurityRuntimeException and adds the methods
 * setLogState and getlogState
 **/
public class MQSecurityRuntimeException extends jakarta.jms.JMSSecurityRuntimeException implements Loggable {

    /**
     * 
     */
    private static final long serialVersionUID = -476436834219165514L;
    private boolean isLogged = false;

    /**
     * Constructs a MQSecurityRuntimeException with the specified detail message
     *
     * @param detailMessage a description of the exception
     **/
    public MQSecurityRuntimeException(String detailMessage) {
        super(detailMessage);
    }

    /**
     * Constructs a MQSecurityRuntimeException with the specified detail message and error code.
     *
     * @param detailMessage a description of the exception
     * @param errorCode a provider-specific error code
     **/
    public MQSecurityRuntimeException(String detailMessage, String errorCode) {
        super(detailMessage, errorCode);
    }

    /**
     * Constructs a MQSecurityRuntimeException with the specified detail message, error code and cause
     *
     * @param detailMessage a description of the exception
     * @param errorCode a provider-specific error code
     * @param cause the underlying cause of this exception
     */
    public MQSecurityRuntimeException(String detailMessage, String errorCode, Throwable cause) {
        super(detailMessage, errorCode, cause);
    }

    /**
     * Construct a MQSecurityRuntimeException to wrap the specified JMSException
     *
     * @param cause the underlying cause of this exception
     */
    public MQSecurityRuntimeException(JMSSecurityException cause) {
        super(cause.getMessage(), cause.getErrorCode(), cause);
    }

    /**
     * Specify whether this object is logged.
     *
     * @param state whether this object is logged
     */
    @Override
    public void setLogState(boolean state) {
        this.isLogged = state;
    }

    /**
     * return whether this object is logged
     *
     * @return whether this object is logged
     */
    @Override
    public boolean getLogState() {
        return this.isLogged;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy