mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
Clarify error message
This commit is contained in:
parent
f3a905a7fe
commit
87051e1c98
2 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ public class FileOpener {
|
|||
} catch (Exception e) {
|
||||
ErrorEvent.fromThrowable(e)
|
||||
.description("Unable to launch editor " + editor.toTranslatedString()
|
||||
+ ". Maybe try to use a different one in the settings.")
|
||||
+ ".\nMaybe try to use a different editor in the settings.")
|
||||
.handle();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -26,7 +26,7 @@ public class TerminalHelper {
|
|||
} catch (Exception ex) {
|
||||
throw new IOException(
|
||||
"Unable to launch terminal " + type.toTranslatedString() + ": " + ex.getMessage()
|
||||
+ ". Maybe try to use a different one in the settings.",
|
||||
+ ".\nMaybe try to use a different terminal in the settings.",
|
||||
ex);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue