[maven] FL-30078 more informative message about 'unlinkProject' method not implemented

GitOrigin-RevId: 674e2da1dc4f765e43b160ef3dab818bad599102
This commit is contained in:
Dmitry Kichinsky
2024-09-25 22:01:37 +02:00
committed by intellij-monorepo-bot
parent 6c2a3df811
commit 59de2aef43

View File

@@ -38,7 +38,7 @@ interface ExternalSystemUnlinkedProjectAware {
}
suspend fun unlinkProject(project: Project, externalProjectPath: String) {
throw UnsupportedOperationException()
throw UnsupportedOperationException("'unlinkProject' method in ${this::class.qualifiedName} is not implemented")
}
fun subscribe(project: Project, listener: ExternalSystemProjectLinkListener, parentDisposable: Disposable)