spring-projects / spring-data-cassandra

Provides support to increase developer productivity in Java when using Apache Cassandra. Uses familiar Spring concepts such as a template classes for core API usage and lightweight repository style data access.
https://spring.io/projects/spring-data-cassandra/
Apache License 2.0
381 stars 311 forks source link

Remove punctuation in Exception messages #1277

Closed jxblum closed 2 years ago

jxblum commented 2 years ago

By default, Java concatenates Exception messages in a chained Exception with the ;. If punctuation is used, then this can lead to confusing text, such as: "Outer exception message.; Chained exception message". Also, the use of the exclamation point (!) is rather abrasive.

Typically, punctuation and other special treatment of the messages in Exceptions is not used. This is also consistent with the core Spring Framework.