1 package org.xvsm.lookup.exceptions;
2
3 import org.xvsm.internal.exceptions.XCoreException;
4
5 /***
6 * thrown when a container cannot be found by the lookup function
7 *
8 * @author Hannu-Daniel Goiss
9 */
10 public class ContainerAlreadyPublishedException extends XCoreException {
11
12 /***
13 * Auto generated serial version UID.
14 */
15 private static final long serialVersionUID = -1600453146674770574L;
16
17 /***
18 * Default constructor.
19 */
20 public ContainerAlreadyPublishedException() {
21 super();
22 }
23
24 /***
25 * Creates a new ContainerNotFoundException.
26 *
27 * @param message
28 * the detailed message.
29 */
30 public ContainerAlreadyPublishedException(String message) {
31 super(message);
32 }
33
34 /***
35 * @param cause
36 * the cause.
37 */
38 public ContainerAlreadyPublishedException(Throwable cause) {
39 super(cause);
40 }
41
42 /***
43 * @param message
44 * the detailed message.
45 * @param cause
46 * the cause.
47 */
48 public ContainerAlreadyPublishedException(String message, Throwable cause) {
49 super(message, cause);
50 }
51
52 }