ing
This commit is contained in:
parent
0d87d36859
commit
dedf3ee9fe
|
@ -4,41 +4,41 @@ package com.loafle.commons.rpc.protocol;
|
|||
* Error
|
||||
*/
|
||||
public class RPCError {
|
||||
public final int code;
|
||||
public final String message;
|
||||
public final Object data;
|
||||
public final int code;
|
||||
public final String message;
|
||||
public final Object data;
|
||||
|
||||
/**
|
||||
* Creates the error.
|
||||
*
|
||||
* @param code the code
|
||||
* @param message the message
|
||||
* @param data the data
|
||||
*/
|
||||
public RPCError(int code, String message, Object data) {
|
||||
this.code = code;
|
||||
this.message = message;
|
||||
this.data = data;
|
||||
}
|
||||
/**
|
||||
* Creates the error.
|
||||
*
|
||||
* @param code the code
|
||||
* @param message the message
|
||||
* @param data the data
|
||||
*/
|
||||
public RPCError(int code, String message, Object data) {
|
||||
this.code = code;
|
||||
this.message = message;
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the code
|
||||
*/
|
||||
int getCode() {
|
||||
return code;
|
||||
}
|
||||
/**
|
||||
* @return the code
|
||||
*/
|
||||
int getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the message
|
||||
*/
|
||||
String getMessage() {
|
||||
return message;
|
||||
}
|
||||
/**
|
||||
* @return the message
|
||||
*/
|
||||
String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the data
|
||||
*/
|
||||
Object getData() {
|
||||
return data;
|
||||
}
|
||||
/**
|
||||
* @return the data
|
||||
*/
|
||||
Object getData() {
|
||||
return data;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user