Package com.streamconverter
Class StreamProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.streamconverter.StreamProcessingException
- All Implemented Interfaces:
Serializable
Custom exception for stream processing errors.
This exception is thrown when errors occur during stream processing operations, providing meaningful context about the failure while preserving the original exception information.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionStreamProcessingException(String message) Constructs a new StreamProcessingException with the specified detail message.StreamProcessingException(String message, Throwable cause) Constructs a new StreamProcessingException with the specified detail message and cause.Constructs a new StreamProcessingException with the specified 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
-
StreamProcessingException
Constructs a new StreamProcessingException with the specified detail message.- Parameters:
message- the detail message
-
StreamProcessingException
Constructs a new StreamProcessingException with the specified detail message and cause.- Parameters:
message- the detail messagecause- the cause of the exception
-
StreamProcessingException
Constructs a new StreamProcessingException with the specified cause.- Parameters:
cause- the cause of the exception
-