FileDocCategorySizeDatePackage
AssertError.javaAPI DocGlassfish v2 API2360Fri May 04 22:34:10 BST 2007com.sun.enterprise.admin.util

AssertError

public class AssertError extends Error
Represents a non-catchable Error when an assertion fails. Callers should not try to catch AssertError.

Fields Summary
Constructors Summary
public AssertError(String msg)
Constructor that takes message string to incorporate

param
msg partial message to display when toString() is called

		super( "ASSERTION FAILED: " + msg );
	
Methods Summary