01: /**
02: * $Id: OperationNotSupportedException.java,v 1.2 2003/03/28 19:32:18 dpolla Exp $
03: * Copyright 2002 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 iPlanet
11: * are trademarks or registered trademarks of Sun Microsystems,
12: * Inc. in the United States and other countries.
13: */package com.sun.addressbook;
14:
15: /**
16: * OperationNotSupportedException
17: *
18: */
19: public class OperationNotSupportedException extends Exception {
20: /**
21: * Construct an exception with the specified msg.
22: * <br><br>
23: * @param msg test message describing the error.
24: */
25: public OperationNotSupportedException(String msg) {
26: super(msg);
27: }
28: }
|