Adjust exception message for ExtensionException

This commit is contained in:
Him188 2020-09-06 14:22:01 +08:00
parent 7da6d33815
commit 77176f5242

View File

@ -105,7 +105,7 @@ internal fun <T : Extension> AbstractExtensionPoint<out T>.throwExtensionExcepti
throwable: Throwable
) {
throw ExtensionException(
"Exception while executing extension ${extension.kClassQualifiedNameOrTip} from ${plugin.name}, registered for ${this.type.qualifiedName}",
"Exception while executing extension ${extension.kClassQualifiedNameOrTip} provided by plugin '${plugin.name}', registered for ${this.type.qualifiedName}",
throwable
)
}