public class IncompatibleWindowSpecificationException extends AbstractLocalizableRTMRuntimeException
IncompatibleWindowSpecificationException
is to notify the query engines parser/translator
of an incompatibility between a user-defined function adapter and the window specification given in the OVER
clause of the particular user-defined function call.Constructor and Description |
---|
IncompatibleWindowSpecificationException()
Constructs a new
IncompatibleWindowSpecificationException with null as its
detail message. |
IncompatibleWindowSpecificationException(LocalizableMessage localizableMessage)
Constructs a new
IncompatibleWindowSpecificationException exception with the specified localizable detail message. |
IncompatibleWindowSpecificationException(String message)
Constructs a new
IncompatibleWindowSpecificationException exception with the specified un-localizable detail message. |
getJavaThrowableClass, getLocale, getLocalizableMessage, getMessage, setLocale
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public IncompatibleWindowSpecificationException(LocalizableMessage localizableMessage)
IncompatibleWindowSpecificationException
exception with the specified localizable detail message. The
cause is not initialized, and may subsequently be initialized by
a call to Throwable.initCause(java.lang.Throwable)
.localizableMessage
- the localizable detail message. The detail message is saved for
later retrieval by the AbstractLocalizableRTMRuntimeException.getMessage()
method.public IncompatibleWindowSpecificationException(String message)
IncompatibleWindowSpecificationException
exception with the specified un-localizable detail message. The
cause is not initialized, and may subsequently be initialized by
a call to Throwable.initCause(java.lang.Throwable)
.message
- the un-localizable detail message. The detail message is saved for
later retrieval by the AbstractLocalizableRTMRuntimeException.getMessage()
method.public IncompatibleWindowSpecificationException()
IncompatibleWindowSpecificationException
with null
as its
detail message. The cause is not initialized, and may subsequently be
initialized by a call to Throwable.initCause(java.lang.Throwable)
.