@Deprecated
public class FileIOException
extends java.io.IOException
LineNumberReader
.Modifier and Type | Field and Description |
---|---|
java.lang.String |
fileName
Deprecated.
The file being read when the IOException ocurred.
|
int |
lineNumber
Deprecated.
The line being read when the IOException ocurred.
|
Constructor and Description |
---|
FileIOException()
Deprecated.
Create a dummy FileIOException.
|
FileIOException(java.io.LineNumberReader reader,
java.io.File file,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.io.LineNumberReader reader,
java.lang.String fileName,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.io.LineNumberReader reader,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message)
Deprecated.
Create a FileIOException with no known file name or line number (which is kind of pointless;
you might as well just have a regular exception).
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader,
java.io.File file)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader,
java.io.File file,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader,
java.lang.String fileName)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader,
java.lang.String fileName,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.io.LineNumberReader reader,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.lang.String fileName,
int lineNumber)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.String message,
java.lang.Throwable cause,
java.lang.String fileName,
int lineNumber)
Deprecated.
Create a FileIOException.
|
FileIOException(java.lang.Throwable cause)
Deprecated.
Create a FileIOException.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Deprecated.
|
public final java.lang.String fileName
public final int lineNumber
public FileIOException()
public FileIOException(java.lang.Throwable cause)
cause
- the exception that occurredpublic FileIOException(java.lang.String message)
message
- the detail messagepublic FileIOException(java.lang.String message, java.lang.Throwable cause)
message
- the detail message for the exceptioncause
- the exception that occurredpublic FileIOException(java.lang.String message, java.lang.String fileName, int lineNumber)
message
- the detail message for the exceptionfileName
- the name of the file being readlineNumber
- the line number to which the file has been readpublic FileIOException(java.lang.String message, java.lang.Throwable cause, java.lang.String fileName, int lineNumber)
message
- the detail message for the exceptioncause
- the exception that occurredfileName
- the name of the file being readlineNumber
- the line number to which the file has been readpublic FileIOException(java.io.LineNumberReader reader, java.lang.Throwable cause)
reader
- the reader for the file being read (used for the line number only; no file name
is known)cause
- the exception that occurredpublic FileIOException(java.lang.String message, java.io.LineNumberReader reader)
message
- the detail message for the exceptionreader
- indicates the line number at which the exception occurred; there is no known file
namepublic FileIOException(java.lang.String message, java.io.LineNumberReader reader, java.lang.Throwable cause)
message
- the detail message for the exceptionreader
- the reader for the file being readcause
- the exception that occurredpublic FileIOException(java.lang.String message, java.io.LineNumberReader reader, java.lang.String fileName)
message
- the detail message for the exceptionreader
- the reader for the file being read (used for the line number only)fileName
- the name of the file being readpublic FileIOException(java.io.LineNumberReader reader, java.lang.String fileName, java.lang.Throwable cause)
reader
- the reader for the file being read (used for the line number only)fileName
- the name of the file being readcause
- the exception that occurredpublic FileIOException(java.lang.String message, java.io.LineNumberReader reader, java.lang.String fileName, java.lang.Throwable cause)
message
- the detail message for the exceptionreader
- the reader for the file being read (used for the line number only)fileName
- the name of the file being readcause
- the exception that occurredpublic FileIOException(java.lang.String message, java.io.LineNumberReader reader, java.io.File file)
message
- the detail message for the exceptionreader
- the reader for the file being read (used for the line number only)file
- the file being read (used for its name only)public FileIOException(java.lang.String message, java.io.LineNumberReader reader, java.io.File file, java.lang.Throwable cause)
message
- the detail message for the exceptionreader
- the reader for the file being read (used for the line number only)file
- the file being read (used for its name only)cause
- the exception that occurredpublic FileIOException(java.io.LineNumberReader reader, java.io.File file, java.lang.Throwable cause)
reader
- the reader for the file being read (used for the line number only)file
- the file being read (used for its name only)cause
- the exception that occurred