com.fasterxml.clustermate.service.msg.ErrorResponse 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;
/**
* Entity used for errors for operations other than CRUD.
*/
public class ErrorResponse
{
public String message;
public ErrorResponse(String message) {
this.message = message;
}
}