com.wepay.waltz.exception.RpcException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of waltz-common Show documentation
Show all versions of waltz-common Show documentation
Waltz is a distributed/replicated write ahead log for transactions.
package com.wepay.waltz.exception;
public class RpcException extends ServerException {
public RpcException(String msg) {
super(msg);
}
@Override
public Throwable fillInStackTrace() {
return this;
}
}