Package edu.rit.io

Class InvalidMatrixFileException

All Implemented Interfaces:
Serializable

public class InvalidMatrixFileException extends IOException
Class InvalidMatrixFileException provides an exception thrown when the contents of a matrix file are invalid. The detail message and/or chained exception give further information about the problem.
Version:
07-Jan-2008
Author:
Alan Kaminsky
See Also:
  • Constructor Details

    • InvalidMatrixFileException

      public InvalidMatrixFileException()
      Construct a new invalid matrix file exception with no detail message and no cause.
    • InvalidMatrixFileException

      public InvalidMatrixFileException(String message)
      Construct a new invalid matrix file exception with the given detail message and no cause.
      Parameters:
      message - Detail message.
    • InvalidMatrixFileException

      public InvalidMatrixFileException(Throwable cause)
      Construct a new invalid matrix file exception with the given cause and the default detail message.
      Parameters:
      cause - Cause.
    • InvalidMatrixFileException

      public InvalidMatrixFileException(String message, Throwable cause)
      Construct a new invalid matrix file exception with the given detail message and the given cause.
      Parameters:
      message - Detail message.
      cause - Cause.