/** * Example of an exception class **/ public class BadThingHappened extends Exception { public BadThingHappened() { // Exception's constructor can take a description super("A Bad Thing Happened"); } }