I have a class overriding Exception that I convert...
# getting-started
d
I have a class overriding Exception that I converted from Java. IDEA is yelling at me about this
Copy code
override fun getMessage(): String {
        return super.message
    }
It says 'getMessage' overrides nothing
a
dumptruckman: you should override de property message
Copy code
override val message: String?
        get() = super.message
d
ah
thanks again