public class MethodException extends PersistenceException
MethodException is used to represent conditions
where a Java Bean property has been annotated incorrectly. This
is thrown if a class schema performs illegal annotations. Such
annotations occur if the methods do not conform to the Java Bean
naming conventions, or if field and method annotations are mixed.| Constructor and Description |
|---|
MethodException(String text,
Object... list)
Constructor for the
MethodException object. |
MethodException(Throwable cause,
String text,
Object... list)
Constructor for the
MethodException object. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic MethodException(String text, Object... list)
MethodException object. This
constructor takes a format string an a variable number of object
arguments, which can be inserted into the format string.text - a format string used to present the error messagelist - a list of arguments to insert into the stringpublic MethodException(Throwable cause, String text, Object... list)
MethodException object. This
constructor takes a format string an a variable number of object
arguments, which can be inserted into the format string.cause - the source exception this is used to representtext - a format string used to present the error messagelist - a list of arguments to insert into the string