From charlesreid1

Revision as of 09:26, 27 June 2017 by Admin (talk | contribs) (Created page with "To raise assertions in Java, you can use the AssertionError class: http://docs.oracle.com/javase/7/docs/api/java/lang/AssertionError.html This is an Error class, not an exce...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

To raise assertions in Java, you can use the AssertionError class:

http://docs.oracle.com/javase/7/docs/api/java/lang/AssertionError.html

This is an Error class, not an exception, but is still throwable.