Package edu.rit.io
Class InvalidMatrixFileException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
edu.rit.io.InvalidMatrixFileException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorDescriptionConstruct a new invalid matrix file exception with no detail message and no cause.InvalidMatrixFileException
(String message) Construct a new invalid matrix file exception with the given detail message and no cause.InvalidMatrixFileException
(String message, Throwable cause) Construct a new invalid matrix file exception with the given detail message and the given cause.Construct a new invalid matrix file exception with the given cause and the default detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvalidMatrixFileException
public InvalidMatrixFileException()Construct a new invalid matrix file exception with no detail message and no cause. -
InvalidMatrixFileException
Construct a new invalid matrix file exception with the given detail message and no cause.- Parameters:
message
- Detail message.
-
InvalidMatrixFileException
Construct a new invalid matrix file exception with the given cause and the default detail message.- Parameters:
cause
- Cause.
-
InvalidMatrixFileException
Construct a new invalid matrix file exception with the given detail message and the given cause.- Parameters:
message
- Detail message.cause
- Cause.
-