Class ConcurrentWriteOperationDetectedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
org.apache.hadoop.fs.azurebfs.contracts.exceptions.AzureBlobFileSystemException
org.apache.hadoop.fs.azurebfs.contracts.exceptions.ConcurrentWriteOperationDetectedException
- All Implemented Interfaces:
Serializable
@Public
@Evolving
public class ConcurrentWriteOperationDetectedException
extends AzureBlobFileSystemException
Thrown when a concurrent write operation is detected.
This exception is used to indicate that parallel access to the create path
has been detected, which violates the single writer semantics.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new ConcurrentWriteOperationDetectedException with a default error message.Constructs a new ConcurrentWriteOperationDetectedException with the specified error message. -
Method Summary
Methods inherited from class org.apache.hadoop.fs.azurebfs.contracts.exceptions.AzureBlobFileSystemException
toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
ConcurrentWriteOperationDetectedException
public ConcurrentWriteOperationDetectedException()Constructs a new ConcurrentWriteOperationDetectedException with a default error message. -
ConcurrentWriteOperationDetectedException
Constructs a new ConcurrentWriteOperationDetectedException with the specified error message.- Parameters:
message- the detail message.
-