(long unixTime)
| 2029 | } |
| 2030 | |
| 2031 | private static void checkUnixTime(long unixTime) { |
| 2032 | |
| 2033 | if ((unixTime > MAX_LIMIT) || (unixTime < MIN_LIMIT)) { |
| 2034 | throw new IllegalArgumentException( |
| 2035 | "UNIX time (UT) out of supported range: " + unixTime); |
| 2036 | } |
| 2037 | |
| 2038 | } |
| 2039 | |
| 2040 | private static void checkFraction(int nanoFraction) { |
| 2041 |