org.objectweb.fractal.adl
Class ADLException
Exception
org.objectweb.fractal.adl.ADLException
public class ADLException
extends Exception
Thrown when an error occurs during the analysis of an ADL definition.
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.
|
ADLException
public ADLException(String msg,
Node src)
msg
- a detail message.src
- where the error is located.
ADLException
public ADLException(String msg,
Node src,
Exception e)
msg
- a detail message.src
- where the error is located.e
- the exception that caused this exception.
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.
s
- PrintStream to use for output.
printStackTrace
public void printStackTrace(PrintWriter s)
Prints this exception and its backtrace to the specified print writer.
s
- PrintWriter to use for output.