something like this: ```class ParameterSetterExcep...
# announcements
c
something like this:
Copy code
class ParameterSetterException(val fieldName: String, cause: Throwable) : RuntimeException("unable to set field $fieldName", cause) {
    constructor(fieldName: String) : super("unable to set field $fieldName")
}