|
|||||
FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This class represents an error that is thrown when a bug is recognized inside the runtime. Basically it is thrown when a constraint is not fullfilled that should be fullfiled.
Field Summary | |
---|---|
Exception |
exception
|
String |
message
|
Constructor Summary | |
GroovyBugError(String message)
constructs a bug error using the given text |
|
GroovyBugError(Exception exception)
Constructs a bug error using the given exception |
|
GroovyBugError(String msg, Exception exception)
Constructs a bug error using the given exception and a text with additional information about the cause |
Method Summary | |
---|---|
String |
getBugText()
Returns the bug text to describe this error |
Throwable |
getCause()
|
String |
getMessage()
Returns the detail message string of this error. |
void |
setBugText(String msg)
Sets the bug text to describe this error |
String |
toString()
Returns a String representation of this class by calling getMessage() .
|
Constructor Detail |
---|
public GroovyBugError(String message)
public GroovyBugError(Exception exception)
public GroovyBugError(String msg, Exception exception)
Method Detail |
---|
public String getBugText()
public Throwable getCause()
public String getMessage()
public void setBugText(String msg)
public String toString()
getMessage()
.