diff options
Diffstat (limited to 'src/main/kotlin/except')
-rw-r--r-- | src/main/kotlin/except/RErrorException.kt | 8 |
1 files changed, 8 insertions, 0 deletions
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 |