Creates a new instance of exception.
Creates a new instance of exception. Default implementation uses RequireCore.DefaultExceptionCreator exception creator.
the message (must be non-blank)
the cause exception (must be non-null and not Some(null))
new exception instance (non-null)
RuntimeException if any argument is not valid
Fails test.
Fails test. Must be invoked at every time when requireXXX method fails. Default implementation
invokes exception() to create new exception instance with message produced by failureMessage() method
and throws the result.
the String to include in the failure message (must be non-null)
RuntimeException at every invokation
Builds the failure message of any requireXXX method.
Builds the failure message of any requireXXX method. Default implementation concatenates
prefix returned by prefix method followed by message followed by postfix
returned by postfix method.
Override this implementation if you want to intercept or change rules of building failure messages.
the source message (must be non-null)
the failure message (non-null)
the postfix of any requireXXX method failure message string
Wraps predicate RequirePredicate to element function RequireElementFunction.
Wraps predicate RequirePredicate to element function RequireElementFunction.
the type of element
the predicate (must be non-null)
the new RequireElementFunction instance
Wraps predicate RequirePredicate to element function RequireFunction.
Wraps predicate RequirePredicate to element function RequireFunction.
the type of element
the predicate (must be non-null)
the new RequireFunction instance
the prefix of any requireXXX method failure message string
Invokes requirement to test an expression and calls fail if it returns false.
Invokes requirement to test an expression and calls fail if it returns false.
the expression to test
a String to include in the failure message (must be non-null)
RuntimeException if requirement invokation returns false of any argument is not valid