From 273ac61769dc4a8c025f6fbee8779c8859d25672 Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Thu, 7 Aug 2025 19:19:11 +0200 Subject: add RErrorException --- src/main/kotlin/RErrorException.kt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/main/kotlin/RErrorException.kt (limited to 'src/main/kotlin') diff --git a/src/main/kotlin/RErrorException.kt b/src/main/kotlin/RErrorException.kt new file mode 100644 index 0000000..56fdebc --- /dev/null +++ b/src/main/kotlin/RErrorException.kt @@ -0,0 +1,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") \ No newline at end of file -- cgit v1.2.3