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: public class LockException extends ModelRuntimeException {
14:
15: public LockException(String s) {
16: super (s);
17: }
18:
19: public LockException(Exception e) {
20: super (e);
21: }
22:
23: /**
24: *
25: */
26: private static final long serialVersionUID = -8503790037321165609L;
27:
28: }
|