1 /*
2 wsmo4j - a WSMO API and Reference Implementation
3 Copyright (c) 2004-2005, OntoText Lab. / SIRMA
4 This library is free software; you can redistribute it and/or modify it under
5 the terms of the GNU Lesser General Public License as published by the Free
6 Software Foundation; either version 2.1 of the License, or (at your option)
7 any later version.
8 This library is distributed in the hope that it will be useful, but WITHOUT
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11 details.
12 You should have received a copy of the GNU Lesser General Public License along
13 with this library; if not, write to the Free Software Foundation, Inc.,
14 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 */
16
17 /**
18 * <p>Title: WSMO4J</p>
19 * <p>Description: WSMO API and a Reference Implementation</p>
20 * <p>Copyright: Copyright (c) 2004-2005</p>
21 * <p>Company: OntoText Lab. / SIRMA </p>
22 */
23
24 package org.wsmo.common.exception;
25
26
27 /**
28 * This is an <b>unchecked</b> exception thrown when the state entity cannot
29 * be synchronised with the underlying persistence mechanism (if any)
30 * Any access to or modification of an entity may rise such exception
31 *
32 * @author not attributable
33 * @version $Revision: 456 $ $Date: 2005-06-22 17:40:49 +0300 (Wed, 22 Jun 2005) $
34 */
35 public class SynchronisationException
36 extends RuntimeException {
37
38 public SynchronisationException() {
39 super();
40 }
41
42 public SynchronisationException(Throwable cause) {
43 super(cause);
44 }
45
46 public SynchronisationException(String msg) {
47 super(msg);
48 }
49 }
50 /*
51 * $Log$
52 * Revision 1.8 2005/06/22 14:40:48 alex_simov
53 * Copyright header added/updated
54 *
55 * Revision 1.7 2005/06/03 14:06:31 marin_dimitrov
56 * no message
57 *
58 * Revision 1.6 2005/06/02 14:58:37 marin_dimitrov
59 * more constructors
60 *
61 * Revision 1.5 2005/06/01 10:31:34 marin_dimitrov
62 * v0.4.0
63 *
64 * Revision 1.3 2005/05/12 13:29:16 marin
65 * javadoc, header, footer, etc
66 *
67 */