java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
net.luis.utils.io.exception.IllegalLineReadException
- All Implemented Interfaces:
Serializable
Thrown when an io reader reads a line from a file in an illegal format.
The exception message should contain details about the error.
The message may also contain information about the expected format of the line.
The exception message should contain details about the error.
The message may also contain information about the expected format of the line.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new illegal line read exception with no details.IllegalLineReadException
(@Nullable String message) Constructs a new illegal line read exception with the specified message.IllegalLineReadException
(@Nullable String message, @Nullable Throwable cause) Constructs a new illegal line read exception with the specified message and cause.IllegalLineReadException
(@Nullable Throwable cause) Constructs a new illegal line read exception 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
-
IllegalLineReadException
public IllegalLineReadException()Constructs a new illegal line read exception with no details. -
IllegalLineReadException
Constructs a new illegal line read exception with the specified message.- Parameters:
message
- The message of the exception
-
IllegalLineReadException
public IllegalLineReadException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause) Constructs a new illegal line read exception with the specified message and cause.- Parameters:
message
- The message of the exceptioncause
- The cause of the exception
-
IllegalLineReadException
Constructs a new illegal line read exception with the specified cause.- Parameters:
cause
- The cause of the exception
-