1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 *
19 */
20 package org.apache.directory.server.protocol.shared;
21
22
23 /**
24 * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
25 * @version $Rev$, $Date$
26 */
27 public class ServiceConfigurationException extends RuntimeException
28 {
29 private static final long serialVersionUID = 8298096524637031225L;
30
31
32 /**
33 * Creates a new instance of ServiceConfigurationException.
34 */
35 public ServiceConfigurationException()
36 {
37 super();
38 }
39
40
41 /**
42 * Creates a new instance of ServiceConfigurationException.
43 *
44 * @param message
45 * @param cause
46 */
47 public ServiceConfigurationException( String message, Throwable cause )
48 {
49 super( message, cause );
50 }
51
52
53 /**
54 * Creates a new instance of ServiceConfigurationException.
55 *
56 * @param message
57 */
58 public ServiceConfigurationException( String message )
59 {
60 super( message );
61 }
62
63
64 /**
65 * Creates a new instance of ServiceConfigurationException.
66 *
67 * @param cause
68 */
69 public ServiceConfigurationException( Throwable cause )
70 {
71 super( cause );
72 }
73 }