Package io.delta.kernel.commit
Class PublishFailedException
Object
Throwable
Exception
RuntimeException
io.delta.kernel.commit.PublishFailedException
- All Implemented Interfaces:
Serializable
Exception thrown when publishing catalog commits to the Delta log fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPublishFailedException(String message) Constructs a new PublishFailedException with the specified detail message.PublishFailedException(String message, Throwable cause) Constructs a new PublishFailedException with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PublishFailedException
Constructs a new PublishFailedException with the specified detail message.- Parameters:
message- the detail message
-
PublishFailedException
Constructs a new PublishFailedException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-