EchoPoint
1.0

echopoint.stylesheet
Class StyleSheetParseException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byechopoint.stylesheet.StyleSheetParseException
All Implemented Interfaces:
java.io.Serializable

public class StyleSheetParseException
extends java.lang.Exception

A StyleSheetParseException is thrown if the StyleSheet data cannot be read or parsed properly.

If another exception is the cause of this exception, for example an IOException during parsing, then it can be contained with the getCauseException() method.

See Also:
Serialized Form

Constructor Summary
StyleSheetParseException(int lineNo, java.lang.Exception causeException, java.lang.String s)
          StyleSheetParseException constructor
 
Method Summary
 java.lang.Exception getCauseException()
          Returns the base cause exception of the StyleSheetParseException or null.
 int getLineNo()
          The line number at which the exception occurred or -1.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StyleSheetParseException

public StyleSheetParseException(int lineNo,
                                java.lang.Exception causeException,
                                java.lang.String s)
StyleSheetParseException constructor

Method Detail

getCauseException

public java.lang.Exception getCauseException()
Returns the base cause exception of the StyleSheetParseException or null.


getLineNo

public int getLineNo()
The line number at which the exception occurred or -1.


toString

public java.lang.String toString()

EchoPoint
1.0