Class PropertyResolutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.data.core.PropertyResolutionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
LambdaIntrospectionException, PropertyReferenceException
Exception indicating errors during property reference or property path resolution. Thrown when a property cannot be
resolved.
- Since:
- 4.1
- Author:
- Mark Paluch
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionPropertyResolutionException(@Nullable String msg) Construct aPropertyResolutionExceptionwith the specified detail message.PropertyResolutionException(@Nullable String msg, @Nullable Throwable cause) Construct aPropertyResolutionExceptionwith the specified detail message and nested exception. -
Method Summary
Methods inherited from class NestedRuntimeException
contains, getMostSpecificCause, getRootCauseMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PropertyResolutionException
Construct aPropertyResolutionExceptionwith the specified detail message.- Parameters:
msg- the detail message.
-
PropertyResolutionException
-