net.dongliu.prettypb.rpc.exception.ServiceException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prettypb-rpc Show documentation
Show all versions of prettypb-rpc Show documentation
proto rpc libs, compatible with proto-rpc-pro
package net.dongliu.prettypb.rpc.exception;
/**
* @author Dong Liu
*/
public class ServiceException extends RuntimeException {
public ServiceException(String msg) {
super(msg);
}
public ServiceException(Exception e) {
super(e);
}
}