Package org.apache.commons.pool2.impl
Class DefaultPooledObject.AbandonedObjectCreatedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.commons.pool2.impl.DefaultPooledObject.AbandonedObjectCreatedException
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- DefaultPooledObject<T>
static class DefaultPooledObject.AbandonedObjectCreatedException extends java.lang.Exception
Used to track how an object was obtained from the pool (the stack trace of the exception will show which code borrowed the object) and when the object was borrowed.
-
-
Field Summary
Fields Modifier and Type Field Description private long
_createdTime
private static java.text.SimpleDateFormat
format
Date formatprivate static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description AbandonedObjectCreatedException()
Create a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
format
private static final java.text.SimpleDateFormat format
Date format
-
_createdTime
private final long _createdTime
-
-