blob: 56fdebc41f8fa501edc5c4c686874fe3d8209d90 (
plain)
1
2
3
4
5
6
|
/**
* 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")
|