From 9bf06f0575e2552cf6dfebb057e5b799ead4ea9f Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Thu, 7 Aug 2025 20:07:38 +0200 Subject: move RErrorException to except package --- src/main/kotlin/except/RErrorException.kt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/main/kotlin/except/RErrorException.kt (limited to 'src/main/kotlin/except/RErrorException.kt') diff --git a/src/main/kotlin/except/RErrorException.kt b/src/main/kotlin/except/RErrorException.kt new file mode 100644 index 0000000..c15cbc2 --- /dev/null +++ b/src/main/kotlin/except/RErrorException.kt @@ -0,0 +1,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") \ No newline at end of file -- cgit v1.2.3