Java tutorial
//package com.java2s; //License from project: MIT License public class Main { /** * Fail the test * * @param message * The message to describe the failure */ public static void fail(String message) { throw new RuntimeException(message); } }