![JAR search and dependency download from the Maven repository](/logo.png)
com.jetdrone.vertx.mods.redis.reply.ErrorReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mod-redis-io Show documentation
Show all versions of mod-redis-io Show documentation
Asynchronous REDIS bus module for Vert.x
The newest version!
package com.jetdrone.vertx.mods.redis.reply;
public class ErrorReply implements Reply {
public static final char MARKER = '-';
private final String error;
public ErrorReply(String error) {
this.error = error;
}
@Override
public String data() {
return error;
}
@Override
public ReplyType getType() {
return ReplyType.Error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy