01: /**
02: * $Id: CMCExistsException.java,v 1.1 2005/06/27 23:32:59 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: * This exception is thrown when a community is expected not to exist,
17: * but does.
18: */
19: public class CMCExistsException extends CMCException {
20: public CMCExistsException(String msg) {
21: super (msg);
22: }
23:
24: public CMCExistsException(String msg, Throwable cause) {
25: super (msg, cause);
26: }
27:
28: public CMCExistsException(Throwable cause) {
29: super(cause);
30: }
31: }
|