Class EndpointGroupException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.linecorp.armeria.client.endpoint.EndpointGroupException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EmptyEndpointGroupException
,EndpointSelectionTimeoutException
A
RuntimeException
raised when the resolution of an EndpointGroup
fails.- See Also:
-
Constructor Summary
ModifierConstructorDescriptionCreates a new instance.EndpointGroupException
(@Nullable String message) Creates a new instance with the specifiedmessage
.EndpointGroupException
(@Nullable String message, @Nullable Throwable cause) Creates a new instance with the specifiedmessage
andcause
.protected
EndpointGroupException
(@Nullable String message, @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.Creates a new instance with the specifiedcause
. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
EndpointGroupException
public EndpointGroupException()Creates a new instance. -
EndpointGroupException
public EndpointGroupException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause) Creates a new instance with the specifiedmessage
andcause
. -
EndpointGroupException
Creates a new instance with the specifiedmessage
. -
EndpointGroupException
Creates a new instance with the specifiedcause
. -
EndpointGroupException
protected EndpointGroupException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace) Creates a new instance with the specifiedmessage
,cause
, suppression enabled or disabled, and writable stack trace enabled or disabled.
-