org.brutusin.demo.RuntimeExceptionAction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rpc-examples Show documentation
Show all versions of rpc-examples Show documentation
Examples of Brutusin-RPC component implementations
package org.brutusin.demo;
import org.brutusin.rpc.http.Cacheable;
import org.brutusin.rpc.http.SafeAction;
public class RuntimeExceptionAction extends SafeAction {
@Override
public Cacheable execute(Void input) {
throw new RuntimeException("An unexpected runtime exception");
}
}