01: /**
02: * $Id: CMCException.java,v 1.1 2005/06/27 23:32:58 jtb Exp $
03: * Copyright 2005 Sun Microsystems, Inc. All
04: * rights reserved. Use of this product is subject
05: * to license terms. Federal Acquisitions:
06: * Commercial Software -- Government Users
07: * Subject to Standard License Terms and
08: * Conditions.
09: *
10: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.portal.community.mc;
14:
15: /**
16: * Generic exception class for community membership and configuration system.
17: */
18: public class CMCException extends Exception {
19: public CMCException(String msg) {
20: super (msg);
21: }
22:
23: public CMCException(String msg, Throwable cause) {
24: super (msg, cause);
25: }
26:
27: public CMCException(Throwable cause) {
28: super(cause);
29: }
30: }
|