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

com.alachisoft.ncache.client.internal.communication.SendError Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
package com.alachisoft.ncache.client.internal.communication;

public class SendError {
    private ErrorType privateType;
    private Exception privateException;

    public SendError(ErrorType type, Exception exception) {
        privateType = type;
        privateException = exception;
    }

    public final ErrorType getType() {
        return privateType;
    }

    public final Exception getException() {
        return privateException;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy