package except /** * This exception represents an error sent by the remote server as an R-error message. * * @param message The message sent by the server. */ class RErrorException(val rErrorMessage: String?) : Exception("R-error message received: $rErrorMessage")