Remove unnecessary property message from interpreter exceptions
This commit is contained in:
committed by
TeamCityServer
parent
e28ab45c51
commit
49d8bd5845
+2
-2
@@ -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")
|
||||
|
||||
|
||||
+1
-1
@@ -5,4 +5,4 @@
|
||||
|
||||
package org.jetbrains.kotlin.ir.interpreter.exceptions
|
||||
|
||||
abstract class InterpreterException : Exception()
|
||||
abstract class InterpreterException(message: String) : Exception(message)
|
||||
Reference in New Issue
Block a user