public class FilterNotSupportedException
extends java.lang.Exception
FilterNotSupportedException indicates that a provided filter
cannot be transformed to another representation, for instance SQL. This can
either be the implementation being unable to understand the filter, the
filter defining criteria not available in the other representation, or the
filter being a custom filter that only works on POJO. FilterNotSupportedException they need
to retrieve the corresponding POJOs and provide them to the filter directly.| Constructor and Description |
|---|
FilterNotSupportedException(java.lang.String message)
Creates a new
FilterNotSupportedException with the designated
message. |
FilterNotSupportedException(java.lang.String message,
java.lang.Throwable cause)
Creates a new
FilterNotSupportedException for the designated
cause with the designated message. |
FilterNotSupportedException(java.lang.Throwable cause)
Creates a new
FilterNotSupportedException for the designated
cause. |
public FilterNotSupportedException(java.lang.String message)
FilterNotSupportedException with the designated
message.message - The message for the created
FilterNotSupportedException.public FilterNotSupportedException(java.lang.Throwable cause)
FilterNotSupportedException for the designated
cause.cause - The clause for the created
FilterNotSupportedException.public FilterNotSupportedException(java.lang.String message,
java.lang.Throwable cause)
FilterNotSupportedException for the designated
cause with the designated message.message - The message for the created
FilterNotSupportedException.cause - The clause for the created
FilterNotSupportedException.