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

org.reactivecommons.async.commons.exceptions.MessageConversionException Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
package org.reactivecommons.async.commons.exceptions;

public class MessageConversionException extends RuntimeException {

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

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

    public MessageConversionException(Exception e) {
        super(e);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy