Package org.apache.jcs.access.exception

Examples of org.apache.jcs.access.exception.InvalidHandleException


        throws CacheException, InvalidHandleException
    {
        ICacheElement element = this.cacheControl.get( (Serializable) name );
        if ( element == null )
        {
            throw new InvalidHandleException( "Object for name [" + name + "] is not in the cache" );
        }

        // Although it will work currently, don't assume pass by reference here,
        // i.e. don't do this:
        // element.setElementAttributes( attr );
View Full Code Here

TOP

Related Classes of org.apache.jcs.access.exception.InvalidHandleException

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.