01: /*
02: * Created on 14.09.2005
03: *
04: */
05: package org.ontoware.semversion;
06:
07: public class CommitConflictException extends IllegalStateException {
08: /**
09: *
10: */
11: private static final long serialVersionUID = 1L;
12:
13: public CommitConflictException() {
14: super ("A child of this version has already been committed!");
15: }
16:
17: }
|