public class PluginIssue extends Object
Modifier and Type | Class and Description |
---|---|
static class |
PluginIssue.PluginIssueCode
Issue code enumeration.
|
Modifier and Type | Field and Description |
---|---|
private Exception |
_cause |
private PluginIssue.PluginIssueCode |
_code |
private String |
_featureName |
private String |
_location |
private String |
_message |
private String |
_pluginName |
Constructor and Description |
---|
PluginIssue(String pluginName,
String featureName,
PluginIssue.PluginIssueCode code,
String location,
String message) |
PluginIssue(String pluginName,
String featureName,
PluginIssue.PluginIssueCode code,
String location,
String message,
Exception cause) |
Modifier and Type | Method and Description |
---|---|
Exception |
getCause()
Returns the cause of this issue, if any.
|
PluginIssue.PluginIssueCode |
getCode()
Returns the code associated with this issue.
|
String |
getFeatureName()
Returns the feature name associated with this issue, if any.
|
String |
getLocation()
Returns the location of this issue, if any.
|
String |
getMessage()
Returns the message associated with this issue.
|
String |
getPluginName()
Returns the plugin name associated with this issue, if any.
|
String |
toString() |
private PluginIssue.PluginIssueCode _code
private String _pluginName
private String _featureName
PluginIssue(String pluginName, String featureName, PluginIssue.PluginIssueCode code, String location, String message)
PluginIssue(String pluginName, String featureName, PluginIssue.PluginIssueCode code, String location, String message, Exception cause)
public PluginIssue.PluginIssueCode getCode()
public String getMessage()
public String getPluginName()
public String getFeatureName()
public String getLocation()
public Exception getCause()