blob: dcff7bd9c930739bb1d840d8cca55944cb429762 (
plain)
1
2
3
4
5
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("Authentication with remote host failed: $reason")
|