Class CertificateSourceUnavailableException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
com.google.auth.mtls.CertificateSourceUnavailableException
All Implemented Interfaces:
Serializable

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.
See Also:
  • Constructor Details

    • CertificateSourceUnavailableException

      public CertificateSourceUnavailableException(String message, Throwable cause)
      Constructor with a message and throwable cause.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • CertificateSourceUnavailableException

      public CertificateSourceUnavailableException(Throwable cause)
      Constructor with a throwable cause.
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
    • CertificateSourceUnavailableException

      public CertificateSourceUnavailableException(String message)
      Constructor with a message.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method)