I am using springs CronTrigger class to build a trigger with following cron expression
0 10 12 ? 1/1 6#3
Which i think is a valid one that will schedule a Task to run on
Third friday of every month at 12:10 pm
This expression is giving expected output when I validated it on cronmaker.com.But while trying to build a trigger using this expression as:
CronTrigger trigger=new CronTrigger("0 10 12 ? 1/1 6#3");
Its throwing me java.lang.NumberFormatException For input string: "6#3"
.I am not getting what's gone wrong.