org.hibernate
Class InstantiationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.hibernate.exception.NestableRuntimeException
                  extended by org.hibernate.HibernateException
                      extended by org.hibernate.InstantiationException
All Implemented Interfaces:
java.io.Serializable, Nestable

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

Field Summary
 
Fields inherited from class org.hibernate.exception.NestableRuntimeException
delegate
 
Constructor Summary
InstantiationException(java.lang.String s, java.lang.Class clazz)
           
InstantiationException(java.lang.String s, java.lang.Class clazz, java.lang.Exception e)
           
InstantiationException(java.lang.String s, java.lang.Class clazz, java.lang.Throwable root)
           
 
Method Summary
 java.lang.String getMessage()
          Returns the detail message string of this throwable.
 java.lang.Class getPersistentClass()
           
 
Methods inherited from class org.hibernate.exception.NestableRuntimeException
getCause, getMessage, getMessages, getThrowable, getThrowableCount, getThrowables, indexOfThrowable, indexOfThrowable, printPartialStackTrace, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InstantiationException

public InstantiationException(java.lang.String s,
                              java.lang.Class clazz,
                              java.lang.Throwable root)

InstantiationException

public InstantiationException(java.lang.String s,
                              java.lang.Class clazz)

InstantiationException

public InstantiationException(java.lang.String s,
                              java.lang.Class clazz,
                              java.lang.Exception e)
Method Detail

getPersistentClass

public java.lang.Class getPersistentClass()

getMessage

public java.lang.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:
getMessage in interface Nestable
Overrides:
getMessage in class NestableRuntimeException
Returns:
the error message


Copyright © 2008 Hibernate.org. All Rights Reserved.