com.fasterxml.clustermate.service.msg.GetErrorResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-service Show documentation
Show all versions of clustermate-service Show documentation
Building blocks for ClusterMate-based services and servers.
package com.fasterxml.clustermate.service.msg;
import com.fasterxml.clustermate.api.EntryKey;
/**
* Simple POJO used for enclosing information in case of a failed GET
*/
public class GetErrorResponse extends CRUDResponseBase
{
public GetErrorResponse(K key, String message) {
super(key, message);
}
}