com.liveperson.faas.exception.FaaSException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functions-client Show documentation
Show all versions of functions-client Show documentation
Functions client for invoking lambdas via the eventsource gateway (a.k.a Asgard)
package com.liveperson.faas.exception;
/**
* FaaS specific exception type
*
* @author arotaru
*/
public class FaaSException extends Exception {
public FaaSException(String message, Throwable cause) {
super(message, cause);
}
public FaaSException(String message) {
super(message);
}
}