Hi I creating war aplication with weblogic 11g and I have problem with joda time's method
new DateTime(int, int, int, int, int, int);
this thrown nosuchmethodException
but when I use new DateTime(int, int, int, int, int, int, int);
(one int more) it works fine
update:
DateTime start = new DateTime(1990, 1, 1, 0, 0, 0); this doesnt works
DateTime start = new DateTime(1990, 1, 1, 0, 0, 0, 0); this works
Any idea where is problem ? thx