public void putSafe( Object key, Object value )
throws CacheException
{
if ( this.cacheControl.get( (Serializable) key ) != null )
{
throw new ObjectExistsException( "putSafe failed. Object exists in the cache for key [" + key
+ "]. Remove first or use a non-safe put to override the value." );
}
put( key, value );
}