Class IllegalLineReadException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
net.luis.utils.io.exception.IllegalLineReadException
All Implemented Interfaces:
Serializable

public class IllegalLineReadException extends IOException
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.
See Also:
  • Constructor Details

    • IllegalLineReadException

      public IllegalLineReadException()
      Constructs a new illegal line read exception with no details.
    • IllegalLineReadException

      public IllegalLineReadException(@Nullable @Nullable String message)
      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 exception
      cause - The cause of the exception
    • IllegalLineReadException

      public IllegalLineReadException(@Nullable @Nullable Throwable cause)
      Constructs a new illegal line read exception with the specified cause.
      Parameters:
      cause - The cause of the exception