1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.exception;
17
18 import org.kuali.rice.krad.util.LegacyDataFramework;
19
20 @Deprecated
21 @LegacyDataFramework
22 public class ReferenceAttributeNotAnOjbReferenceException extends RuntimeException {
23
24 private static final long serialVersionUID = -6295013610345432284L;
25
26 public ReferenceAttributeNotAnOjbReferenceException() {
27 super();
28 }
29
30 public ReferenceAttributeNotAnOjbReferenceException(String message) {
31 super(message);
32 }
33
34 public ReferenceAttributeNotAnOjbReferenceException(Throwable cause) {
35 super(cause);
36 }
37
38 public ReferenceAttributeNotAnOjbReferenceException(String message, Throwable cause) {
39 super(message, cause);
40 }
41
42 }