I am working with timezones in a Java application using JodaTime. I encounter a problem when trying to build a DateTimeZone (JodaTime) object from the id of a java timezone. Joda throws a
java.lang.IllegalArgumentException: The datetime zone id 'SystemV/HST10' is not recognised
for the folowing list of timezones:
- SystemV/HST10
- SystemV/YST9
- SystemV/YST9YDT
- SystemV/PST8
- SystemV/PST8PDT
- SystemV/MST7
- SystemV/MST7MDT
- SystemV/CST6
- SystemV/CST6CDT
- SystemV/EST5
- SystemV/EST5EDT
- SystemV/AST4
- SystemV/AST4ADT
What are these timezones used for? Are they relevant to non-programmers? Should an application designed for general uses support these timezones?
Thanks.