PPT Slide
Programmers can define their own exception
types and write code to throw them and catch
Example with Attributes and Values:
public class NoSuchAttributeException extends Exception
NoSuchAttributeException(String name, Object value) {
super("No attribute named \"" + name + "\" found");