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

cloud.tianai.rpc.remoting.codec.api.exception.CodecException Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
package cloud.tianai.rpc.remoting.codec.api.exception;

import cloud.tianai.rpc.common.exception.RpcException;

public class CodecException extends RpcException {

    public CodecException() {
    }

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

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

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

    public CodecException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy