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

org.skyscreamer.nevado.jms.message.InvalidMessage Maven / Gradle / Ivy

There is a newer version: 1.3.2
Show newest version
package org.skyscreamer.nevado.jms.message;

import javax.jms.JMSException;

/**
 * Created by IntelliJ IDEA.
 * User: Carter Page
 * Date: 3/24/12
 * Time: 3:46 PM
 */
public class InvalidMessage extends NevadoMessage {
    private final Exception _exception;

    public InvalidMessage(Exception e) {
        super();
        _exception = e;
    }

    public Exception getException() {
        return _exception;
    }

    @Override
    public void internalClearBody() throws JMSException {
        // Nothing to do
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy