01: /*
02: * LICENSE INFORMATION
03: * Copyright 2005-2007 by FZI (http://www.fzi.de).
04: * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05: * <OWNER> = Max Völkel
06: * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07: * <YEAR> = 2007
08: *
09: * Project information at http://semweb4j.org/rdf2go
10: */
11: package org.ontoware.rdf2go.exception;
12:
13: /**
14: * An exception that is thrown by Model functions.
15: * @author voelkel, sauermann
16: */
17: public class ModelException extends Exception implements
18: AnyModelException {
19:
20: private static final long serialVersionUID = 9146437799850363415L;
21:
22: public ModelException() {
23: super ();
24: }
25:
26: public ModelException(String string) {
27: super (string);
28: }
29:
30: /**
31: * @param message
32: * @param cause
33: */
34: public ModelException(String message, Throwable cause) {
35: super (message, cause);
36: }
37:
38: /**
39: * @param cause
40: */
41: public ModelException(Throwable cause) {
42: super(cause);
43: }
44:
45: }
|