com.amazonaws.services.lambda.runtime.api.client.runtimeapi.LambdaRuntimeClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-lambda-java-runtime-interface-client Show documentation
Show all versions of aws-lambda-java-runtime-interface-client Show documentation
The AWS Lambda Java Runtime Interface Client implements the Lambda programming model for Java
package com.amazonaws.services.lambda.runtime.api.client.runtimeapi;
/**
* Copyright (c) 2019 Amazon. All rights reserved.
*/
public class LambdaRuntimeClientException extends RuntimeException {
public LambdaRuntimeClientException(String message, int responseCode) {
super(message + "Response code: '" + responseCode + "'.");
}
}