mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-05 16:36:56 +07:00
13 lines
596 B
XML
13 lines
596 B
XML
<idea-plugin>
|
|
<id>com.intellij</id>
|
|
<vendor>JetBrains</vendor>
|
|
<extensionPoints>
|
|
<extensionPoint name="errorHandler"
|
|
interface="com.intellij.openapi.diagnostic.ErrorReportSubmitter"/>
|
|
</extensionPoints>
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<error descr="Exceptions from plugins developed by JetBrains are reported via ITNReporter automatically, there is no need to specify it explicitly"><errorHandler implementation="com.intellij.diagnostic.ITNReporter"/></error>
|
|
<errorHandler implementation="MyErrorHandler"/>
|
|
</extensions>
|
|
</idea-plugin>
|