io.xream.x7.exception.RemoteServiceException Maven / Gradle / Ivy
package io.xream.x7.exception;
/**
* Created by Sim on 2018/6/22.
*/
public class RemoteServiceException extends RuntimeException {
private String message;
public RemoteServiceException(){
}
public RemoteServiceException(String message){
this.message = message;
}
public String getMessage() {
return message;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy