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

The newest version!
/*
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package com.amazonaws.services.lambda.runtime.api.client.runtimeapi;

public class LambdaRuntimeClientException extends RuntimeException {
    public LambdaRuntimeClientException(String message, int responseCode) {
        super(message + " Response code: '" + responseCode + "'.");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy