I am using quartz for schedulling.
TriggerUtils.getDateOf(0,40,18,09,06); it accept 5 parameter. (seconds, minutes, hours, daysOfMonth, month).
When i pass fourth parameter as "09". Eclipse give me error "The literal Octal 09 (digit 9) of type int is out of range ".
But when i pass the fourth parameter as "9" instead of "09", it works.
Can anyone explain me this error?