blob: 94935c30f9a22a555f1629ec8f0be9769ab30575 (
plain)
1
2
3
4
5
6
7
8
|
package except
/**
* The authentication with the remote part failed.
*
* @param reason A human-readable reason for which the authentication failed.
*/
class FailedAuthenticationException(val reason: String) : Exception("Authentication with remote host failed: $reason")
|