Here you can find the source of checkMonth(int month)
Parameter | Description |
---|---|
month | der Monat. |
Parameter | Description |
---|---|
NumberFormatException | an exception |
private static void checkMonth(int month) throws NumberFormatException
//package com.java2s; public class Main { /**/* ww w . j a va2s . c om*/ * Prueft, ob sich der Monat innerhalb des erlaubten Bereichs befindet. * @param month der Monat. * @throws NumberFormatException */ private static void checkMonth(int month) throws NumberFormatException { if (month < 1 || month > 12) { throw new NumberFormatException(); } } }