Skip to content

Commit a05cbbd

Browse files
committed
add concise tips when SaveException happend
1 parent 942ba20 commit a05cbbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jabref/gui/exporter/SaveDatabaseAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private boolean saveDatabase(Path file, boolean selectedOnly, Charset encoding,
236236
} catch (UnsupportedCharsetException ex) {
237237
throw new SaveException(Localization.lang("Character encoding '%0' is not supported.", encoding.displayName()), ex);
238238
} catch (IOException ex) {
239-
throw new SaveException("Problems saving:", ex);
239+
throw new SaveException("Problems saving:" + ex, ex);
240240
}
241241

242242
return true;

0 commit comments

Comments
 (0)