01: /*
02: * Created on 14.09.2005
03: *
04: */
05: package org.ontoware.semversion;
06:
07: public class BranchlabelAlreadyUsedException extends
08: IllegalStateException {
09: /**
10: *
11: */
12: private static final long serialVersionUID = 1L;
13:
14: public BranchlabelAlreadyUsedException() {
15: super ("A branch with the same label already exists!");
16: }
17: }
|