Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Validation
- if (monthName != "January"
- && monthName != "February"
- && monthName != "March"
- && monthName != "April"
- && monthName != "May"
- && monthName != "June"
- && monthName != "July"
- && monthName != "August"
- && monthName != "September"
- && monthName != "October"
- && monthName != "November"
- && monthName != "December") {
- throw new IllegalArgumentException("Month(): bad month name");
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement