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

org.rocketmq.starter.exception.ConsumeException Maven / Gradle / Ivy

The newest version!
package org.rocketmq.starter.exception;

/**
 * @author He Jialin
 */
public class ConsumeException extends RuntimeException{
    private static final long serialVersionUID = 4093867789628938836L;

    public ConsumeException(String message) {
        super(message);
    }

    public ConsumeException(Throwable cause) {
        super(cause);
    }

    public ConsumeException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy