Class IncorrectLineLengthException

All Implemented Interfaces:
Serializable

public class IncorrectLineLengthException extends FlatFileFormatException
Exception indicating that the line size expected is different from what is expected.
Since:
1.1
Author:
Lucas Ward, Michael Minella, Mahmoud Ben Hassine
See Also:
  • Constructor Details

    • IncorrectLineLengthException

      public IncorrectLineLengthException(String message, int expectedLength, int actualLength, String input)
      Parameters:
      message - the message for this exception.
      expectedLength - int containing the length that was expected.
      actualLength - int containing the actual length.
      input - the String that contained the contents that caused the exception to be thrown.
      Since:
      2.2.6
    • IncorrectLineLengthException

      public IncorrectLineLengthException(String message, int expectedLength, int actualLength)
      Parameters:
      message - the message for this exception.
      expectedLength - int containing the length that was expected.
      actualLength - int containing the actual length.
    • IncorrectLineLengthException

      public IncorrectLineLengthException(int expectedLength, int actualLength, String input)
      Parameters:
      expectedLength - int containing the length that was expected.
      actualLength - int containing the actual length.
      input - the String that contained the contents that caused the exception to be thrown.
      Since:
      2.2.6
    • IncorrectLineLengthException

      public IncorrectLineLengthException(int expectedLength, int actualLength)
      Parameters:
      expectedLength - int containing the length that was expected.
      actualLength - int containing the actual length.
  • Method Details

    • getActualLength

      public int getActualLength()
      Retrieves the actual length that was recorded for this exception.
      Returns:
      int containing the actual length.
    • getExpectedLength

      public int getExpectedLength()
      Retrieves the expected length that was recorded for this exception.
      Returns:
      int containing the expected length.