diff options
Diffstat (limited to 'src/main/kotlin/FailedAuthenticationException.kt')
-rw-r--r-- | src/main/kotlin/FailedAuthenticationException.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/kotlin/FailedAuthenticationException.kt b/src/main/kotlin/FailedAuthenticationException.kt new file mode 100644 index 0000000..f437673 --- /dev/null +++ b/src/main/kotlin/FailedAuthenticationException.kt @@ -0,0 +1,6 @@ +/** + * The authentication with the remote part failed. + * + * @param reason A human-readable reason for which the authentication failed. + */ +class FailedAuthenticationException(val reason: String) : Exception()
\ No newline at end of file |