
com.sun.messaging.jms.MQInvalidSelectorRuntimeException 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.InvalidSelectorException;
import com.sun.messaging.jmq.jmsclient.logging.Loggable;
/**
* This class is the MQ-specific implementation of jakarta.jms.InvalidSelectorRuntimeException and adds the methods
* setLogState and getlogState
**/
public class MQInvalidSelectorRuntimeException extends jakarta.jms.InvalidSelectorRuntimeException implements Loggable {
/**
*
*/
private static final long serialVersionUID = 8864954449504049833L;
private boolean isLogged = false;
/**
* Constructs a MQInvalidSelectorRuntimeException
with the specified detail message
*
* @param detailMessage a description of the exception
**/
public MQInvalidSelectorRuntimeException(String detailMessage) {
super(detailMessage);
}
/**
* Constructs a MQInvalidSelectorRuntimeException
with the specified detail message and error code.
*
* @param detailMessage a description of the exception
* @param errorCode a provider-specific error code
**/
public MQInvalidSelectorRuntimeException(String detailMessage, String errorCode) {
super(detailMessage, errorCode);
}
/**
* Constructs a MQInvalidSelectorRuntimeException
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 MQInvalidSelectorRuntimeException(String detailMessage, String errorCode, Throwable cause) {
super(detailMessage, errorCode, cause);
}
/**
* Construct a MQInvalidSelectorRuntimeException
to wrap the specified InvalidSelectorException
*
* @param cause the underlying cause of this exception
*/
public MQInvalidSelectorRuntimeException(InvalidSelectorException 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