Package org.apache.geode.cache.query
Class AmbiguousNameException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.geode.GemFireCheckedException
org.apache.geode.cache.query.QueryException
org.apache.geode.cache.query.NameResolutionException
org.apache.geode.cache.query.AmbiguousNameException
- All Implemented Interfaces:
Serializable
Thrown if an attribute or method name in a query can be resolved to more than one object in scope
or if there is more than one maximally specific overridden method in a class.
- Since:
- GemFire 4.0
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs instance of AmbiguousNameException with error messageAmbiguousNameException(String msg, Throwable cause) Constructs instance of AmbiguousNameException with error message and cause -
Method Summary
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCauseMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
AmbiguousNameException
Constructs instance of AmbiguousNameException with error message- Parameters:
msg- the error message
-
AmbiguousNameException
Constructs instance of AmbiguousNameException with error message and cause- Parameters:
msg- the error messagecause- a Throwable that is a cause of this exception
-