Class RequestLogAvailabilityException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.linecorp.armeria.common.logging.RequestLogAvailabilityException
-
- All Implemented Interfaces:
Serializable
public class RequestLogAvailabilityException extends RuntimeException
ARuntimeException
raised when accessing aRequestLog
property that's not available yet.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description RequestLogAvailabilityException()
Creates a new instance.RequestLogAvailabilityException(String message)
Creates a new instance with the specifiedmessage
.RequestLogAvailabilityException(String message, Throwable cause)
Creates a new instance with the specifiedmessage
andcause
.protected
RequestLogAvailabilityException(String message, 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.RequestLogAvailabilityException(Throwable cause)
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 Detail
-
RequestLogAvailabilityException
public RequestLogAvailabilityException()
Creates a new instance.
-
RequestLogAvailabilityException
public RequestLogAvailabilityException(@Nullable String message)
Creates a new instance with the specifiedmessage
.
-
RequestLogAvailabilityException
public RequestLogAvailabilityException(@Nullable String message, @Nullable Throwable cause)
Creates a new instance with the specifiedmessage
andcause
.
-
RequestLogAvailabilityException
public RequestLogAvailabilityException(@Nullable Throwable cause)
Creates a new instance with the specifiedcause
.
-
RequestLogAvailabilityException
protected RequestLogAvailabilityException(@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.
-
-