/**
* $Id: OperationNotSupportedException.java,v 1.2 2003/03/28 19:32:18 dpolla Exp $
* Copyright 2002 Sun Microsystems, Inc. All
* rights reserved. Use of this product is subject
* to license terms. Federal Acquisitions:
* Commercial Software -- Government Users
* Subject to Standard License Terms and
* Conditions.
*
* Sun, Sun Microsystems, the Sun logo, and iPlanet
* are trademarks or registered trademarks of Sun Microsystems,
* Inc. in the United States and other countries.
*/
package com.sun.addressbook;
/**
* OperationNotSupportedException
*
*/
public class OperationNotSupportedException extends Exception {
/**
* Construct an exception with the specified msg.
* <br><br>
* @param msg test message describing the error.
*/
public OperationNotSupportedException(String msg) {
super(msg);
}
}
|