1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19 package org.apache.ldap.server.prefs;
20
21
22 /***
23 * A {@link RuntimeException} that is thrown when accessing
24 * {@link ServerSystemPreferences} failed.
25 *
26 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
27 * @version $Rev: 264732 $, $Date: 2005-08-30 04:04:51 -0400 (Tue, 30 Aug 2005) $
28 */
29 public class ServerSystemPreferenceException extends RuntimeException
30 {
31 private static final long serialVersionUID = -2042269063779317751L;
32
33 public ServerSystemPreferenceException()
34 {
35 super();
36 }
37
38 public ServerSystemPreferenceException( String message )
39 {
40 super( message );
41 }
42
43 public ServerSystemPreferenceException( String message, Throwable cause )
44 {
45 super( message, cause );
46 }
47
48 public ServerSystemPreferenceException( Throwable cause )
49 {
50 super( cause );
51 }
52 }