All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.brutusin.demo.ExceptionAction Maven / Gradle / Ivy

The newest version!
package org.brutusin.demo;

import org.brutusin.rpc.http.Cacheable;
import org.brutusin.rpc.http.SafeAction;


public class ExceptionAction extends SafeAction {

    @Override
    public Cacheable execute(Void input) throws Exception {
        throw new Exception("This action always throws exceptions");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy