/**
* $Id: ABStoreException.java,v 1.3 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;
/**
* ABStoreExcpetion
*
*/
public class ABStoreException extends Exception {
/**
* Construct an exception with the specified msg.
* <br><br>
* @param msg text message describing the error.
*/
public ABStoreException(String msg) {
super(msg);
}
}
|