01: /**
02: * Copyright 2002 Sun Microsystems, Inc. All
03: * rights reserved. Use of this product is subject
04: * to license terms. Federal Acquisitions:
05: * Commercial Software -- Government Users
06: * Subject to Standard License Terms and
07: * Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and iPlanet
10: * are trademarks or registered trademarks of Sun Microsystems,
11: * Inc. in the United States and other countries.
12: */package com.sun.portal.app.calendarcommon.common;
13:
14: /**
15: *
16: * @author Nigel Jacobs
17: * @created May 18, 2005
18: */
19: public class SharedServicesException extends Exception {
20:
21: public SharedServicesException(String msg) {
22: super (msg);
23: }
24:
25: public SharedServicesException(String msg, Throwable ex) {
26: super(msg, ex);
27: }
28:
29: }
|