diff options
author | Edoardo La Greca | 2025-08-07 19:19:11 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-07 19:21:15 +0200 |
commit | 273ac61769dc4a8c025f6fbee8779c8859d25672 (patch) | |
tree | 7e465e64cb37068f6a80456e786421b3846559c0 | |
parent | 0d34f06f3d02ebabb84b80b271ae3c3028e87dd9 (diff) |
add RErrorException
-rw-r--r-- | src/main/kotlin/RErrorException.kt | 6 |
1 files changed, 6 insertions, 0 deletions
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 |