Package org.springframework.core
Class Constants.ConstantException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.springframework.core.Constants.ConstantException
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Constants
Exception thrown when the
Constants
class is asked for
an invalid constant name.- See Also:
-
Constructor Summary
ConstructorDescriptionConstantException
(String className, String namePrefix, Object value) Thrown when an invalid constant value is looked up.ConstantException
(String className, String field, String message) Thrown when an invalid constant name is requested. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ConstantException
Thrown when an invalid constant name is requested.- Parameters:
className
- name of the class containing the constant definitionsfield
- invalid constant namemessage
- description of the problem
-
ConstantException
Thrown when an invalid constant value is looked up.- Parameters:
className
- name of the class containing the constant definitionsnamePrefix
- prefix of the searched constant namesvalue
- the looked up constant value
-