Package com.funambol.syncclient.sps

Examples of com.funambol.syncclient.sps.DataAccessException


            pobj = PersistentStore.getPersistentObject(KEY);   
            cache = (CacheData)pobj.getContents();
        }
        catch (Exception e){
            StaticDataHelper.log("EventCache(): " + e.toString());
            throw new DataAccessException("error accessing cache.");
        }
       
        if(cache == null){
            StaticDataHelper.log("EventCache: cache empty, initialize it.");
            cache = new CacheData();
View Full Code Here


            pobj.commit();
            StaticDataHelper.log("EventCache::save: cache data saved");
        }
        catch (Exception e){
            StaticDataHelper.log("EventCache.save(): " + e.toString());
            throw new DataAccessException("error saving cache.");    //XXX exception?
        }
    }
View Full Code Here

TOP

Related Classes of com.funambol.syncclient.sps.DataAccessException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.