[Java] Class MissingFieldException
- groovy.lang.MissingFieldException
public class MissingFieldException extends GroovyRuntimeException
An exception occurred if a dynamic field dispatch fails with an unknown field. Note that the Missing*Exception classes were named for consistency and to avoid conflicts with JDK exceptions of the same name.
Constructor Summary
Constructor and description |
---|
MissingFieldException
(String field, Class type) |
MissingFieldException
(String field, Class type, Throwable e) |
MissingFieldException
(String message, String field, Class type) |
Methods Summary
Type Params | Return Type | Name and description |
---|---|---|
public String |
getField()
| |
public Class |
getType()
|
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class GroovyRuntimeException | getLocationText, getMessage, getMessageWithoutLocationText, getModule, getNode, setModule |
Constructor Detail
public MissingFieldException(String field, Class type)
public MissingFieldException(String field, Class type, Throwable e)
public MissingFieldException(String message, String field, Class type)
Method Detail
public String getField()
- Returns:
- the name of the field that could not be found
public Class getType()
- Returns:
- The type on which the field was attempted to be called
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/groovy/lang/MissingFieldException.html