Example usage for org.hibernate WrongClassException getEntityName

List of usage examples for org.hibernate WrongClassException getEntityName

Introduction

In this page you can find the example usage for org.hibernate WrongClassException getEntityName.

Prototype

public String getEntityName() 

Source Link

Usage

From source file:org.springframework.orm.hibernate3.HibernateObjectRetrievalFailureException.java

License:Apache License

public HibernateObjectRetrievalFailureException(WrongClassException ex) {
    super(ex.getEntityName(), ex.getIdentifier(), ex.getMessage(), ex);
}