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

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

There is a newer version: 2.6.0
Show newest version
/* Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. */

package com.amazonaws.services.lambda.runtime.api.client;

public class TooManyServiceProvidersFoundException extends RuntimeException {
    public TooManyServiceProvidersFoundException() {
    }

    public TooManyServiceProvidersFoundException(String errorMessage) {
        super(errorMessage);
    }

    public TooManyServiceProvidersFoundException(Throwable cause) {
        super(cause);
    }

    public TooManyServiceProvidersFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy