12 lines
284 B
Java
12 lines
284 B
Java
//: assertions/Assert2.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
// Assert with an informative message
|
|
// {JVMArgs: -ea}
|
|
// {ThrowsException}
|
|
|
|
public class Assert2 {
|
|
public static void main(String[] args) {
|
|
assert false: "Here's a message saying what happened";
|
|
}
|
|
} ///:~
|