com.liveperson.faas.exception.FaaSLambdaException 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;
import com.liveperson.faas.dto.FaaSError;
public class FaaSLambdaException extends FaaSDetailedException {
public FaaSLambdaException(FaaSError faaSError, RestException cause) {
super(faaSError, cause);
}
}