Remove unnecessary property message from interpreter exceptions

This commit is contained in:
Ivan Kylchik
2021-05-19 17:09:21 +03:00
committed by TeamCityServer
parent e28ab45c51
commit 49d8bd5845
2 changed files with 3 additions and 3 deletions
@@ -5,9 +5,9 @@
package org.jetbrains.kotlin.ir.interpreter.exceptions
open class InterpreterError(override val message: String) : InterpreterException()
open class InterpreterError(message: String) : InterpreterException(message)
class InterpreterMethodNotFoundError(override val message: String) : InterpreterError(message)
class InterpreterMethodNotFoundError(message: String) : InterpreterError(message)
class InterpreterTimeOutError : InterpreterError("Exceeded execution limit of constexpr expression")
@@ -5,4 +5,4 @@
package org.jetbrains.kotlin.ir.interpreter.exceptions
abstract class InterpreterException : Exception()
abstract class InterpreterException(message: String) : Exception(message)