Package org.quartz.exceptions
Class ObjectAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.quartz.exceptions.SchedulerException
org.quartz.exceptions.JobPersistenceException
org.quartz.exceptions.ObjectAlreadyExistsException
- All Implemented Interfaces:
- Serializable
An exception that is thrown to indicate that an attempt to store a new object (i.e. 
 JobDetail, TriggerCalendar
 Scheduler- Author:
- James House
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionObjectAlreadyExistsException(JobDetail offendingJob) Create aObjectAlreadyExistsExceptionand auto-generate a message using the name/group from the givenJobDetail.ObjectAlreadyExistsException(Trigger offendingTrigger) Create aObjectAlreadyExistsExceptionand auto-generate a message using the name/group from the givenTrigger.
- 
Method SummaryMethods inherited from class org.quartz.exceptions.SchedulerExceptiongetUnderlyingException, toStringMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
- 
Constructor Details- 
ObjectAlreadyExistsExceptionCreate aObjectAlreadyExistsExceptionand auto-generate a message using the name/group from the givenJobDetail.The message will read: 
 "Unable to store Job with name: '__' and group: '__', because one already exists with this identification."
- 
ObjectAlreadyExistsExceptionCreate aObjectAlreadyExistsExceptionand auto-generate a message using the name/group from the givenTrigger.The message will read: 
 "Unable to store Trigger with name: '__' and group: '__', because one already exists with this identification."
 
-