Class DestinationPathsNotMergeableException

All Implemented Interfaces:
Serializable

public class DestinationPathsNotMergeableException extends DestinationAccessException
This exception is thrown if destination URI paths cannot be merged.
See Also:
  • Constructor Details

    • DestinationPathsNotMergeableException

      public DestinationPathsNotMergeableException()
      Creates a new exception without any referenced destination name.
    • DestinationPathsNotMergeableException

      public DestinationPathsNotMergeableException(@Nullable String message)
      Initializes the exception by delegating the message to the super constructor.
      Parameters:
      message - The exception message.
    • DestinationPathsNotMergeableException

      public DestinationPathsNotMergeableException(@Nullable Throwable cause)
      Initializes the exception by delegating the causing exception to the super constructor.
      Parameters:
      cause - The exception that caused the exception to be created.
    • DestinationPathsNotMergeableException

      public DestinationPathsNotMergeableException(@Nullable String message, @Nullable Throwable cause)
      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.