Here you can find the source of validateMonthDay(int nDate)
static void validateMonthDay(int nDate)
//package com.java2s; /**// w w w . jav a2 s.c om * Created by Andrew Bell 12/24/2015 * www.recursivechaos.com * andrew@recursivechaos.com * Licensed under MIT License 2015. See license.txt for details. */ public class Main { static void validateMonthDay(int nDate) { if ((nDate > 28) || (nDate < 1)) { throw new IndexOutOfBoundsException("nDate must be between 1 and 28. " + nDate + " was passed."); } } }