com.bluecast.io
Class FileFormatException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--com.bluecast.io.FileFormatException
All Implemented Interfaces:
java.io.Serializable

public class FileFormatException
extends java.io.IOException

See Also:
Serialized Form

Field Summary
protected  int column
           
protected  int line
           
 
Constructor Summary
FileFormatException()
           
FileFormatException(java.lang.String msg)
           
FileFormatException(java.lang.String msg, int line, int column)
           
 
Method Summary
 int getColumn()
          Returns the column number of the bad formatting, or -1 if unknown
 int getLine()
          Returns the line number of the bad formatting, or -1 if unknown
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

line

protected int line

column

protected int column
Constructor Detail

FileFormatException

public FileFormatException()

FileFormatException

public FileFormatException(java.lang.String msg)

FileFormatException

public FileFormatException(java.lang.String msg,
                           int line,
                           int column)
Method Detail

getLine

public int getLine()
Returns the line number of the bad formatting, or -1 if unknown


getColumn

public int getColumn()
Returns the column number of the bad formatting, or -1 if unknown