blob: f4376737ccefb7bf1961d7ea44285bdb5f41b112 (
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()
|