Catch UnsupportedOperationException

This commit is contained in:
Eugene Yokota 2026-07-16 01:50:46 -04:00
parent 9369e159c1
commit 26b3c5315f
1 changed files with 3 additions and 2 deletions

View File

@ -183,8 +183,9 @@ private[sbt] object xMain:
)
(None, Some(Exit(2)))
}
case _: IOException => (None, None)
case _: UnsatisfiedLinkError => (None, None)
case _: IOException => (None, None)
case _: UnsatisfiedLinkError => (None, None)
case _: UnsupportedOperationException => (None, None)
}
}
end xMain