01: /*
02: * Created on 14.09.2005
03: *
04: */
05: package org.ontoware.semversion;
06:
07: public class InvalidChildOfSuggestionException extends
08: IllegalStateException {
09:
10: /**
11: *
12: */
13: private static final long serialVersionUID = 1L;
14:
15: public InvalidChildOfSuggestionException() {
16: super (
17: "Committing a valid child of a suggestion is not allowed!");
18: }
19:
20: }
|