01: /**
02: *
03: */package org.ontoware.rdfreactor.runtime;
04:
05: /**
06: * A <b>CardinalityException</b> is thrown e.g. when a removing or adding a value from a property
07: * violates the maximal or minima cardinality of that property.
08: *
09: * @author $Author: behe $
10: * @version $Id: CardinalityException.java,v 1.2 2006/05/20 16:55:20 behe Exp $
11: *
12: */
13:
14: public class CardinalityException extends Exception {
15:
16: public CardinalityException(String msg) {
17: super (msg);
18: }
19:
20: /**
21: *
22: */
23: private static final long serialVersionUID = 1L;
24:
25: }
|