Prüft, ob der Zeitpunkt vor 1972 liegt. @param context Prüfzeitpunkt @throws UnsupportedOperationException wenn der Zeitpunkt vor 1972 ist
(Moment context)
| 1886 | * @throws UnsupportedOperationException wenn der Zeitpunkt vor 1972 ist |
| 1887 | */ |
| 1888 | static void check1972(Moment context) { |
| 1889 | |
| 1890 | if (context.posixTime < POSIX_UTC_DELTA) { |
| 1891 | throw new UnsupportedOperationException( |
| 1892 | "Cannot calculate SI-duration before 1972-01-01."); |
| 1893 | } |
| 1894 | |
| 1895 | } |
| 1896 | |
| 1897 | private String toStringUTC(boolean extended) { |
| 1898 |