public class CertificateSourceUnavailableException extends IOException
This exception is thrown by certificate providers in the Google auth library when the certificate source is unavailable. This means that the transport layer should move on to the next certificate source provider type.
Constructors
CertificateSourceUnavailableException(String message)
public CertificateSourceUnavailableException(String message)
Constructor with a message.
Parameter | |
---|---|
Name | Description |
message |
String The detail message (which is saved for later retrieval by the #getMessage() method) |
CertificateSourceUnavailableException(String message, Throwable cause)
public CertificateSourceUnavailableException(String message, Throwable cause)
Constructor with a message and throwable cause.
Parameters | |
---|---|
Name | Description |
message |
String The detail message (which is saved for later retrieval by the #getMessage() method) |
cause |
Throwable The cause (which is saved for later retrieval by the #getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |
CertificateSourceUnavailableException(Throwable cause)
public CertificateSourceUnavailableException(Throwable cause)
Constructor with a throwable cause.
Parameter | |
---|---|
Name | Description |
cause |
Throwable The cause (which is saved for later retrieval by the #getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.) |