blob: 4bcf26cd1a0fdba872ed72d11f0f165674aa2308 [file] [log] [blame]
/*
* @(#)BackingStoreException.java 1.3 01/07/18
* $Header: /home/eclipse/org.eclipse.core.runtime/src/org/osgi/service/prefs/BackingStoreException.java,v 1.1 2004/05/05 15:14:34 jeff Exp $
*
* Open Services Gateway Initiative (OSGi) Confidential.
*
* (C) Copyright 1996-2001 Sun Microsystems, Inc.
*
* This source code is licensed to OSGi as MEMBER LICENSED MATERIALS
* under the terms of Section 3.2 of the OSGi MEMBER AGREEMENT.
*
*/
package org.osgi.service.prefs;
/**
* Thrown to indicate that a preferences operation could not complete because
* of a failure in the backing store, or a failure to contact the backing
* store.
*
* @version $Revision: 1.1 $
* @author Open Services Gateway Initiative
*/
public class BackingStoreException extends Exception {
/**
* All serializable objects should have a stable serialVersionUID
*/
private static final long serialVersionUID = 1L;
/**
* Constructs a <tt>BackingStoreException</tt> with the specified detail message.
*
* @param s the detail message.
*/
public BackingStoreException(String s) {
super(s);
}
}