File tree Expand file tree Collapse file tree
src/main/kotlin/insyncwithfoo/ryecharm Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import com.intellij.openapi.options.Configurable
1010import com.intellij.openapi.options.ShowSettingsUtil
1111import com.intellij.openapi.project.Project
1212import com.intellij.util.ui.EmptyClipboardOwner
13- import kotlinx.serialization.SerializationException
1413import java.awt.Toolkit
1514import java.awt.datatransfer.StringSelection
1615import java.nio.file.Path
@@ -132,9 +131,9 @@ internal fun Notification.addSeeOutputActions(processOutput: ProcessOutput) {
132131}
133132
134133
135- internal fun Notification.addSeeErrorAction (error : SerializationException ) {
134+ internal fun Notification.addSeeErrorAction (error : Throwable ) {
136135 val text = message(" notificationActions.seeErrorInEditor" )
137136 val content = error.stackTraceToString()
138137
139- addOpenTemporaryFileAction(text, " error-message .txt" , content)
138+ addOpenTemporaryFileAction(text, " error.txt" , content)
140139}
You can’t perform that action at this time.
0 commit comments