com.alachisoft.ncache.client.internal.communication.SendError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ncache-professional-client Show documentation
Show all versions of ncache-professional-client Show documentation
NCache Professional client for java.
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;
}
}