■ throws can appear only on methods and on constructors.
■ throws must come after the method parameter list.
■ You can list
multiple exceptions on a throws,
separated by commas.
■ If a method throws checked exceptions, the calling method must either (1) handle them or (2) rethrow them.