AuthenticationException

public final classAuthenticationExceptionextendsException

AuthenticationExceptionfor DeviceProvider connection.

Public Constructor Summary

AuthenticationException()
Constructs anAuthenticationExceptionwith no detail message.
AuthenticationException(Stringmsg)
Constructs anAuthenticationExceptionwith the specified detail message.
AuthenticationException(Stringmsg, Throwable cause)
Creates anAuthenticationExceptionwith the specified detail message and cause.
AuthenticationException(Throwablecause)
Creates anAuthenticationExceptionwith the specified cause and a detail message of(cause==null? null: cause.toString())(which typically contains the class and detail message ofcause).

Inherited Method Summary

Public Constructors

publicAuthenticationException()

Constructs anAuthenticationExceptionwith no detail message. A detail message is a String that describes this particular exception.

publicAuthenticationException(Stringmsg)

Constructs anAuthenticationExceptionwith the specified detail message. A detail message is a String that describes this particular exception.

Parameters
msg the detail message.

publicAuthenticationException(Stringmsg,Throwable cause)

Creates anAuthenticationExceptionwith the specified detail message and cause.

Parameters
msg the detail message (which is saved for later retrieval by theThrowable.getMessage() method).
cause the cause (which is saved for later retrieval by theThrowable.getCause() method). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.

publicAuthenticationException(Throwable cause)

Creates anAuthenticationExceptionwith the specified cause and a detail message of(cause==null? null: cause.toString())(which typically contains the class and detail message ofcause).

Parameters
cause the cause (which is saved for later retrieval by theThrowable.getCause() method). Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.