mirror of
https://github.com/sbt/sbt.git
synced 2026-09-01 18:47:14 +02:00
Fixes #8538 The code was calling e.getMessage.contains() without checking if getMessage() returns null. Changed to use Option(e.getMessage).exists() to safely handle null values.