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

com.github.netty.protocol.dubbo.packet.BodyFail Maven / Gradle / Ivy

package com.github.netty.protocol.dubbo.packet;

import com.github.netty.protocol.dubbo.Body;

public class BodyFail extends Body {
    private final String errorMessage;

    public BodyFail(String errorMessage) {
        this.errorMessage = errorMessage;
    }

    public String getErrorMessage() {
        return errorMessage;
    }

    @Override
    public String toString() {
        return "BodyFail{" +
                "\n\terrorMessage='" + errorMessage + '\'' +
                "\n}";
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy