当前页面: 
在线文档首页 > 
Hibernate 3.2.3 正式版 API 英文文档
InstantiationException (Hibernate API Documentation) - Hibernate 3.2.3 正式版 API 英文文档
org.hibernate
Class InstantiationException
java.lang.Object
   java.lang.Throwable
java.lang.Throwable
       java.lang.Exception
java.lang.Exception
           java.lang.RuntimeException
java.lang.RuntimeException
               org.hibernate.exception.NestableRuntimeException
org.hibernate.exception.NestableRuntimeException
                   org.hibernate.HibernateException
org.hibernate.HibernateException
                       org.hibernate.InstantiationException
org.hibernate.InstantiationException
- All Implemented Interfaces: 
- Nestable, Serializable
- public class InstantiationException- extends HibernateException
Thrown if Hibernate can't instantiate an entity or component
 class at runtime.
- Author:
- Gavin King
- See Also:
- Serialized Form
 
 
 
 
| Methods inherited from class org.hibernate.exception.NestableRuntimeException | 
| getCause, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace | 
 
 
 
InstantiationException
public InstantiationException(String s,
                              Class clazz,
                              Throwable root)
InstantiationException
public InstantiationException(String s,
                              Class clazz)
InstantiationException
public InstantiationException(String s,
                              Class clazz,
                              Exception e)
getPersistentClass
public Class getPersistentClass()
- 
 
getMessage
public String getMessage()
- Description copied from class: NestableRuntimeException
- Returns the detail message string of this throwable. If it was
 created with a null message, returns the following:
 ( cause==null ? null : cause.toString( ).
 
- 
- Specified by:
- getMessagein interface- Nestable
- Overrides:
- getMessagein class- NestableRuntimeException
 
-