What must validateAge do when age is -5?
validateAge
age
Return normally because every integer is a valid age.
Throw the message Age cannot be greater than 120.
Age cannot be greater than 120
Throw InvalidAgeException with the message Age cannot be negative.
InvalidAgeException
Age cannot be negative
Silently change the input to zero and report success.