momeunit.framework
Class AssertionFailedError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by momeunit.framework.AssertionFailedError
All Implemented Interfaces:
Serializable

public class AssertionFailedError
extends Error

An Error thrown when an assertion fails.

Version:
1.1.2
Author:
Sergio Morozov
See Also:
Serialized Form

Constructor Summary
AssertionFailedError()
          Instantiates AssertionFailedError with no descriptive message.
AssertionFailedError(String message)
          Instantiates AssertionFailedError with the specified message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

AssertionFailedError

public AssertionFailedError()
Instantiates AssertionFailedError with no descriptive message.

Since:
1.0

AssertionFailedError

public AssertionFailedError(String message)
Instantiates AssertionFailedError with the specified message.

Parameters:
message - message that describes a failure.
Since:
1.0