1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package ca.pjer.cm.api.discovery;
19
20 import ca.pjer.cm.api.cmf.ContentManagementException;
21
22 /***
23 * <br />
24 * $Id: DiscoveryServiceException.java,v 1.1 2004/05/18 12:57:02 pjer Exp $<br />
25 * <br />
26 * $RCSfile: DiscoveryServiceException.java,v $<br />
27 * $Revision: 1.1 $<br />
28 * $Author: pjer $<br />
29 * $Date: 2004/05/18 12:57:02 $<br />
30 *
31 * @TODO comment me.<br />
32 */
33 public class DiscoveryServiceException extends ContentManagementException {
34 public DiscoveryServiceException(String message) {
35 super(message);
36 }
37
38 public DiscoveryServiceException(String message, Throwable cause) {
39 super(message, cause);
40 }
41 }