* @param message of type String, the message to be thrown as a format string
* @param args of type Object[], the values to be passed into the message format string
*/
public static void throwFail( String message, Object... args )
{
throw new AssertionException( String.format( message, args ) );
}