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

com.amazonaws.services.lambda.runtime.api.client.runtimeapi.LambdaRuntimeClientException Maven / Gradle / Ivy

There is a newer version: 2.6.0
Show newest version
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 + "'.");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy