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