List of usage examples for java.lang IncompatibleClassChangeError IncompatibleClassChangeError
public IncompatibleClassChangeError(String s)
IncompatibleClassChangeError
with the specified detail message. From source file:org.quartz.JobDetail.java
public Object clone() { JobDetail copy;/* w ww.j ava2 s. c o m*/ try { copy = (JobDetail) super.clone(); copy.jobListeners = SetUtils.orderedSet(new HashSet()); copy.jobListeners.addAll(jobListeners); if (jobDataMap != null) { copy.jobDataMap = (JobDataMap) jobDataMap.clone(); } } catch (CloneNotSupportedException ex) { throw new IncompatibleClassChangeError("Not Cloneable."); } return copy; }