Commonize AssertionError(message, cause) constructor

This commit is contained in:
Abduqodiri Qurbonzoda
2023-04-09 00:20:42 +03:00
committed by Space Team
parent 8e995e6c62
commit c961c15729
7 changed files with 9 additions and 5 deletions
@@ -131,7 +131,7 @@ public actual open class AssertionError : Error {
actual constructor(message: Any?) : super(message?.toString(), message as? Throwable)
constructor(message: String?, cause: Throwable?) : super(message, cause)
actual constructor(message: String?, cause: Throwable?) : super(message, cause)
}
@Suppress("ACTUAL_WITHOUT_EXPECT")