public class IllegalTransformationException
extends java.lang.Exception
Constructor and Description |
---|
IllegalTransformationException()
Constructs a new exception with null as its detail message and 0 as line
number.
|
IllegalTransformationException(int lineno)
Constructs a new exception with null as its detail message and a specific
line number.
|
IllegalTransformationException(java.lang.String message)
Constructs a new exception with a specific details message and 0 as line
number.
|
IllegalTransformationException(java.lang.String message,
int lineno)
Constructs a new exception with a specific detail message and a specific
line number.
|
IllegalTransformationException(java.lang.String message,
java.lang.Throwable cause)
Constructs a new exception with a specific detail message and cause.
|
IllegalTransformationException(java.lang.String message,
java.lang.Throwable cause,
int lineno)
Constructs a new exception with a specific detail message, cause and line
number.
|
IllegalTransformationException(java.lang.Throwable cause)
Constructs a new exception with null as its detail message, 0 as line
number and a specific cause.
|
IllegalTransformationException(java.lang.Throwable cause,
int lineno)
Constructs a new exception with null as its detail message, a specific line
number and a specific cause.
|
Modifier and Type | Method and Description |
---|---|
int |
getStartLine()
Get the start line of the transformation that triggered the exception.
|
void |
setStartLine(int lineno)
Set the start line of the transformation that triggered the exception.
|
public IllegalTransformationException()
public IllegalTransformationException(int lineno)
lineno
- Line number in the XcodeML that triggered the exception.public IllegalTransformationException(java.lang.String message)
message
- Specific exception message.public IllegalTransformationException(java.lang.String message, int lineno)
message
- Specific exception message.lineno
- Line number in the XcodeML that triggered the exception.public IllegalTransformationException(java.lang.String message, java.lang.Throwable cause)
message
- Specific exception message.cause
- the cause.public IllegalTransformationException(java.lang.String message, java.lang.Throwable cause, int lineno)
message
- Specific exception message.cause
- the causelineno
- Line number in the XcodeML that triggered the exception.public IllegalTransformationException(java.lang.Throwable cause)
cause
- The cause.public IllegalTransformationException(java.lang.Throwable cause, int lineno)
cause
- the cause.lineno
- Line number in the XcodeML that triggered the exception.public int getStartLine()
public void setStartLine(int lineno)
lineno
- Line number in the XcodeML that triggered the exception.