Gemfire JavaDocs_test
Package org.apache.geode.cache.query
Class NameNotFoundException
- 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.NameNotFoundException
-
- All Implemented Interfaces:
java.io.Serializable
public class NameNotFoundException extends NameResolutionException
Thrown when an attribute or method name could not be resolved during query execution because no matching method or field could be found.- Since:
- GemFire 4.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NameNotFoundException(java.lang.String message)
Constructs instance of ObjectNameNotFoundException with error messageNameNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs instance of ObjectNameNotFoundException with error message and cause
-
Method Summary
-
Methods inherited from class org.apache.geode.GemFireCheckedException
getRootCause
-
-
-
-
Constructor Detail
-
NameNotFoundException
public NameNotFoundException(java.lang.String message)
Constructs instance of ObjectNameNotFoundException with error message- Parameters:
message
- the error message
-
NameNotFoundException
public NameNotFoundException(java.lang.String message, java.lang.Throwable cause)
Constructs instance of ObjectNameNotFoundException with error message and cause- Parameters:
message
- the error messagecause
- a Throwable that is a cause of this exception
-
-