EventHubException Class
- java.lang.Object
- Exception
- com.microsoft.azure.eventhubs.EventHubException
public class EventHubException
This is the base exception that service bus will produce for all error cases.
Constructor Summary
Method Summary
Modifier and Type | Method and Description |
---|---|
ErrorContext | getContext() |
boolean |
getIsTransient()
A boolean indicating if the exception is a transient error or not. |
String | getMessage() |
void | setContext(ErrorContext errorContext) |
Constructor Details
EventHubException
public EventHubException(final boolean isTransient, final String message)
Parameters:
EventHubException
public EventHubException(final boolean isTransient, final String message, final Throwable cause)
Parameters:
EventHubException
public EventHubException(final boolean isTransient, final Throwable cause)
Parameters:
Method Details
getContext
public ErrorContext getContext()
getIsTransient
public boolean getIsTransient()
A boolean indicating if the exception is a transient error or not.
Returns:
getMessage
public String getMessage()
setContext
public void setContext(ErrorContext errorContext)
Parameters: