package exceptions
Type Members
-
case class
FlareException(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable
An exception class for Flare.
An exception class for Flare.
- message
The detail message for the exception.
- cause
The cause of the exception.
-
case class
FlareInvalidConfigException(message: String = "", cause: Throwable = None.orNull) extends RuntimeException with Product with Serializable
An exception class for representing invalid configurations in Flare.
An exception class for representing invalid configurations in Flare.
- message
The detail message for the exception.
- cause
The cause of the exception.
-
case class
FlareWriterStreamingUnsupported(message: String = "", cause: Throwable = None.orNull) extends Exception with Product with Serializable
An exception class indicating that streaming is unsupported in Flare writer.
An exception class indicating that streaming is unsupported in Flare writer.
- message
The detail message for the exception.
- cause
The cause of the exception.
-
case class
SparkWriteFailedException(message: String = "", cause: Throwable = None.orNull) extends RuntimeException with Product with Serializable
An exception class for representing a failure in Spark write operations.
An exception class for representing a failure in Spark write operations.
- message
The detail message for the exception.
- cause
The cause of the exception.