Exception handling

class SimpleExceptionException()

class RecommendExc: Exception {
    //recommended constructors
    constructor(): super()
    constructor(message: String): super(message)
}

throw SimpleException() //<- Error

throw RecommendExc("exeption"//<- Error