Example usage for org.hibernate UnresolvableObjectException getMessage

List of usage examples for org.hibernate UnresolvableObjectException getMessage

Introduction

In this page you can find the example usage for org.hibernate UnresolvableObjectException getMessage.

Prototype

@Override
    public String getMessage() 

Source Link

Usage

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

License:Apache License

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