Package com.github.alexdlaird.exception
Class JavaNgrokException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.github.alexdlaird.exception.JavaNgrokException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
JavaNgrokHTTPException,JavaNgrokInstallerException,JavaNgrokSecurityException,NgrokException
public class JavaNgrokException extends java.lang.RuntimeExceptionRoot exception for theNgrokClientand thejava-ngroklibrary.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JavaNgrokException(java.lang.String message)An exception with a message.JavaNgrokException(java.lang.String message, java.lang.Throwable cause)An exception with a message and a root cause.
-
-
-
Constructor Detail
-
JavaNgrokException
public JavaNgrokException(java.lang.String message)
An exception with a message.- Parameters:
message- The message describing the exception.
-
JavaNgrokException
public JavaNgrokException(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.
-
-