org.objectweb.fractal.adl

Class ParserException


public class ParserException
extends Exception

Thrown when an error occurs during the parsing of a file.

Constructor Summary

ParserException(String msg, Exception e)
Constructs a new ParserException.

Method Summary

void
printStackTrace()
Prints the stack backtrace.
void
printStackTrace(PrintStream s)
Prints this exception and its backtrace to the specified print stream.
void
printStackTrace(PrintWriter s)
Prints this exception and its backtrace to the specified print writer.

Constructor Details

ParserException

public ParserException(String msg,
                       Exception e)

Parameters:
msg - a detail message.
e - the exception that caused this exception.

Method Details

printStackTrace

public void printStackTrace()
Prints the stack backtrace.


printStackTrace

public void printStackTrace(PrintStream s)
Prints this exception and its backtrace to the specified print stream.

Parameters:
s - PrintStream to use for output.


printStackTrace

public void printStackTrace(PrintWriter s)
Prints this exception and its backtrace to the specified print writer.

Parameters:
s - PrintWriter to use for output.