[Wasm] Keep error message for the IAE exception
This commit is contained in:
committed by
TeamCityServer
parent
dcdc7e4633
commit
049e48e780
@@ -17,8 +17,8 @@ internal fun THROW_ISE(): Nothing {
|
||||
throw IllegalStateException()
|
||||
}
|
||||
|
||||
internal fun THROW_IAE(): Nothing {
|
||||
throw IllegalArgumentException()
|
||||
internal fun THROW_IAE(message: String): Nothing {
|
||||
throw IllegalArgumentException(message)
|
||||
}
|
||||
|
||||
internal fun throwNoBranchMatchedException(): Nothing {
|
||||
|
||||
Reference in New Issue
Block a user