Java org.springframework.orm ObjectRetrievalFailureException fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.orm ObjectRetrievalFailureException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.orm ObjectRetrievalFailureException.

The text is from its open source code.

Subclass

org.springframework.orm.ObjectRetrievalFailureException has subclasses.
Click this link to see all its subclasses.

Constructor

ObjectRetrievalFailureException(String msg, Throwable cause)
Create a general ObjectRetrievalFailureException with the given message, without any information on the affected object.
ObjectRetrievalFailureException(Class persistentClass, Object identifier)
Create a new ObjectRetrievalFailureException for the given object, with the default "not found" message.
ObjectRetrievalFailureException(String persistentClassName, Object identifier)
Create a new ObjectRetrievalFailureException for the given object, with the default "not found" message.
ObjectRetrievalFailureException(Class persistentClass, Object identifier, String msg, @Nullable Throwable cause)
Create a new ObjectRetrievalFailureException for the given object, with the given explicit message and exception.
ObjectRetrievalFailureException(String persistentClassName, Object identifier, String msg, @Nullable Throwable cause)
Create a new ObjectRetrievalFailureException for the given object, with the given explicit message and exception.

Method

ThrowablegetCause()
Returns the cause of this throwable or null if the cause is nonexistent or unknown.
StringgetMessage()
Return the detail message, including the message from the nested exception if there is one.
ThrowablegetRootCause()
Retrieve the innermost cause of this exception, if any.
StringtoString()
Returns a short description of this throwable.