mirror of https://github.com/sbt/sbt.git
Catch UnsupportedOperationException
This commit is contained in:
parent
9369e159c1
commit
26b3c5315f
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue