Package org.apache.commons.beanutils
Class BeanAccessLanguageException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- org.apache.commons.beanutils.BeanAccessLanguageException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
NestedNullException
public class BeanAccessLanguageException extends java.lang.IllegalArgumentExceptionThrown to indicate that the Bean Access Language cannot execute query against given bean. This is a runtime exception and access langauges are encouraged to subclass to create custom exceptions whenever appropriate.- Since:
- 1.7
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static longserialVersionUID
-
Constructor Summary
Constructors Constructor Description BeanAccessLanguageException()Constructs aBeanAccessLanguageExceptionwithout a detail message.BeanAccessLanguageException(java.lang.String message)Constructs aBeanAccessLanguageExceptionwithout a detail message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BeanAccessLanguageException
public BeanAccessLanguageException()
Constructs aBeanAccessLanguageExceptionwithout a detail message.
-
BeanAccessLanguageException
public BeanAccessLanguageException(java.lang.String message)
Constructs aBeanAccessLanguageExceptionwithout a detail message.- Parameters:
message- the detail message explaining this exception
-
-