Class DestinationPathsNotMergeableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.sap.cloud.sdk.cloudplatform.connectivity.exception.DestinationAccessException
com.sap.cloud.sdk.cloudplatform.connectivity.exception.DestinationPathsNotMergeableException
- All Implemented Interfaces:
Serializable
This exception is thrown if destination URI paths cannot be merged.
- See Also:
-
Constructor Summary
ConstructorDescriptionCreates a new exception without any referenced destination name.Initializes the exception by delegating the message to the super constructor.DestinationPathsNotMergeableException
(String destinationName, String message) Initializes the exception by delegating the message to the super constructor and setting the name of the destination causing the exception.DestinationPathsNotMergeableException
(String destinationName, String message, Throwable cause) Initializes the exception by delegating the message and the causing exception to the super constructor and setting the name of the destination causing the exception.DestinationPathsNotMergeableException
(String message, Throwable cause) Initializes the exception by delegating the message and the causing exception to the super constructor.Initializes the exception by delegating the causing exception to the super constructor. -
Method Summary
Methods inherited from class com.sap.cloud.sdk.cloudplatform.connectivity.exception.DestinationAccessException
getDestinationName
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
DestinationPathsNotMergeableException
public DestinationPathsNotMergeableException()Creates a new exception without any referenced destination name. -
DestinationPathsNotMergeableException
Initializes the exception by delegating the message to the super constructor.- Parameters:
message
- The exception message.
-
DestinationPathsNotMergeableException
Initializes the exception by delegating the causing exception to the super constructor.- Parameters:
cause
- The exception that caused the exception to be created.
-
DestinationPathsNotMergeableException
Initializes the exception by delegating the message and the causing exception to the super constructor.- Parameters:
message
- The exception message.cause
- The exception that caused the exception to be created.
-
DestinationPathsNotMergeableException
public DestinationPathsNotMergeableException(@Nullable String destinationName, @Nullable String message) Initializes the exception by delegating the message to the super constructor and setting the name of the destination causing the exception.- Parameters:
destinationName
- The name of the destination causing this exception.message
- The exception message.
-
DestinationPathsNotMergeableException
public DestinationPathsNotMergeableException(@Nullable String destinationName, @Nullable String message, @Nullable Throwable cause) Initializes the exception by delegating the message and the causing exception to the super constructor and setting the name of the destination causing the exception.- Parameters:
destinationName
- The name of the destination causing this exception.message
- The exception message.cause
- The exception that caused the exception to be created.
-