com.sleepycat.db
Class MemoryException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           com.sleepycat.db.DatabaseException
com.sleepycat.db.DatabaseException
               com.sleepycat.db.MemoryException
com.sleepycat.db.MemoryException
- All Implemented Interfaces: 
- Serializable
- public class MemoryException 
- extends DatabaseException
This exception is thrown when a DatabaseEntry
passed to a Database or Cursor method is not large
enough to hold a value being returned.  This only applies to
DatabaseEntry objects configured with the
DatabaseEntry.setUserBuffer method.
In a Java Virtual Machine, there are usually separate heaps for memory
allocated by native code and for objects allocated in Java code.  If the
Java heap is exhausted, the JVM will throw an
OutOfMemoryError, so you may see that exception
rather than this one.
- See Also:
- Serialized Form
 
 
 
 
getDatabaseEntry
public DatabaseEntry getDatabaseEntry()
- Returns the DatabaseEntryobject with insufficient memory
    to complete the operation to complete the operation.
 
- 
 
toString
public String toString()
- 
 
- 
- Overrides:
- toStringin class- DatabaseException
 
- 
 
Copyright (c) 1996, 2013 Oracle and/or its affiliates.  All rights reserved.