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

com.sap.cloud.sdk.cloudplatform.connectivity.ScpCfServiceCreationFailedException Maven / Gradle / Ivy

Go to download

Implementation of the Cloud platform abstraction for general-purpose connectivity on the SAP Cloud Platform (Cloud Foundry).

The newest version!
/*
 * Copyright (c) 2020 SAP SE or an SAP affiliate company. All rights reserved.
 */

package com.sap.cloud.sdk.cloudplatform.connectivity;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

import com.sap.cloud.sdk.cloudplatform.exception.CloudPlatformException;

/**
 * Thrown if the service cannot be found or there is another kind of problem preventing its creation.
 */
public class ScpCfServiceCreationFailedException extends CloudPlatformException
{
    private static final long serialVersionUID = 3L;

    /**
     * Default constructors.
     */
    public ScpCfServiceCreationFailedException()
    {
    }

    /**
     * Default constructors.
     *
     * @param message
     *            the message
     */
    public ScpCfServiceCreationFailedException( @Nonnull final String message )
    {
        super(message);
    }

    /**
     * Default constructors.
     *
     * @param cause
     *            the cause
     */
    public ScpCfServiceCreationFailedException( @Nonnull final Throwable cause )
    {
        super(cause);
    }

    /**
     * Default constructors.
     *
     * @param message
     *            the message
     * @param cause
     *            an optional cause
     */
    public ScpCfServiceCreationFailedException( @Nonnull final String message, @Nullable final Throwable cause )
    {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy