CRON expression with camel quartz2 to schedule a job

Please find the below xml and help me out to exclude a particular day (29th Sep 2016).

I have used below CRON expression with camel quartz2 to schedule a job which every 1 min all days in a year.

Here I want to add CRON expression to exclude or ignore a particular day in below xml.

It would be thankful if you give any suggestion regarding this.

<camelContext id="prabu_scheduler" xmlns="http://camel.apache.org/schema/spring">
<route>
<from uri="file:C:/cameltest/from/?scheduler=quartz2&scheduler.cron=0+0/1+*+1/1+*+?+*"/>
<log message="Moving ${file:name} to the output directory"/>
<to uri="file:C:/cameltest/to/>
</route>
</camelContext>