org.apache.bcel.verifier.exc
Class AssertionViolatedException
RuntimeException
org.apache.bcel.verifier.exc.AssertionViolatedException
public final class AssertionViolatedException
extends RuntimeException
Instances of this class should never be thrown. When such an instance is thrown,
this is due to an INTERNAL ERROR of BCEL's class file verifier "JustIce".
$Id: AssertionViolatedException.java,v 1.2 2002/03/15 11:19:24 enver Exp $AssertionViolatedException() - Constructs a new AssertionViolatedException with null as its error message string.
|
AssertionViolatedException(String message) - Constructs a new AssertionViolatedException with the specified error message preceded
by "INTERNAL ERROR: ".
|
void | extendMessage(String pre, String post) - Extends the error message with a string before ("pre") and after ("post") the
'old' error message.
|
String | getMessage() - Returns the error message string of this AssertionViolatedException object.
|
static void | main(String[] args) - DO NOT USE.
|
AssertionViolatedException
public AssertionViolatedException()
Constructs a new AssertionViolatedException with null as its error message string.
AssertionViolatedException
public AssertionViolatedException(String message)
Constructs a new AssertionViolatedException with the specified error message preceded
by "INTERNAL ERROR: ".
extendMessage
public void extendMessage(String pre,
String post)
Extends the error message with a string before ("pre") and after ("post") the
'old' error message. All of these three strings are allowed to be null, and null
is always replaced by the empty string (""). In particular, after invoking this
method, the error message of this object can no longer be null.
getMessage
public String getMessage()
Returns the error message string of this AssertionViolatedException object.
- the error message string of this AssertionViolatedException.
main
public static void main(String[] args)
DO NOT USE. It's for experimental testing during development only.