Class JavaNgrokInstallerException

  • All Implemented Interfaces:
    java.io.Serializable

    public class JavaNgrokInstallerException
    extends JavaNgrokException
    Thrown from NgrokInstaller when an error occurs while downloading and installing the ngrok binary.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      JavaNgrokInstallerException​(java.lang.String message)
      An exception with a message.
      JavaNgrokInstallerException​(java.lang.String message, java.lang.Throwable cause)
      An exception with a message and a root cause.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • JavaNgrokInstallerException

        public JavaNgrokInstallerException​(java.lang.String message)
        An exception with a message.
        Parameters:
        message - The message describing the exception.
      • JavaNgrokInstallerException

        public JavaNgrokInstallerException​(java.lang.String message,
                                           java.lang.Throwable cause)
        An exception with a message and a root cause.
        Parameters:
        message - The message describing the exception.
        cause - The initial cause of the exception.