1 package de.fhdw.wtf.persistence.exception;
2
3 import java.sql.SQLException;
4
5
6
7
8
9
10
11
12
13 @Deprecated
14 public class LinkConsistencyViolatedException extends PersistenceException {
15
16
17
18
19 private static final String LINK_CONSISTENCY_MESSAGE =
20 "UnidirectionalLink could not be created because owner or target violated the consistency of the model or the Transaction has no access to the given User Objects";
21
22
23
24 private static final long serialVersionUID = 1L;
25
26
27
28
29
30
31
32 public LinkConsistencyViolatedException(final SQLException nested) {
33 super(LINK_CONSISTENCY_MESSAGE, nested);
34 }
35
36 }