public interface ExtensionPoints
Modifier and Type | Field and Description |
---|---|
static ExtensionPointName<ErrorReportSubmitter> |
ERROR_HANDLER_EP
This extension point allows a plugin vendor to provide users with ability to report exceptions that happened in
their plugin code.
|
static final ExtensionPointName<ErrorReportSubmitter> ERROR_HANDLER_EP
<extensions xmlns="com.intellij">
<errorHandler implementation="my.plugin.package.MyErrorHandler"/>
</extensions>
The my.plugin.package.MyErrorHandler
class must implement ErrorReportSubmitter
.