blob: c15cbc230f3591a747fd83c491361db5c4391d78 (
plain)
1
2
3
4
5
6
7
8
|
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")
|