Package com.google.auth.mtls
Class CertificateSourceUnavailableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.google.auth.mtls.CertificateSourceUnavailableException
- All Implemented Interfaces:
Serializable
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.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor with a message.CertificateSourceUnavailableException(String message, Throwable cause) Constructor with a message and throwable cause.Constructor with a throwable cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
CertificateSourceUnavailableException
Constructor with a message and throwable cause.- Parameters:
message- 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). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
CertificateSourceUnavailableException
Constructor with a throwable cause.- Parameters:
cause- The cause (which is saved for later retrieval by theThrowable.getCause()method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
-
CertificateSourceUnavailableException
Constructor with a message.- Parameters:
message- The detail message (which is saved for later retrieval by theThrowable.getMessage()method)
-