LoggingException

public class LoggingException extends RuntimeException

Exception thrown when a log statement cannot be emitted correctly. This exception should only be thrown by logger backend implementations which have opted not to handle specific issues.

Typically a logger backend would only throw LoggingException in response to issues in test code or other debugging environments. In production code, the backend should be configured to emit a modified log statement which includes the error information.

See also handleError.

Constructors

Link copied to clipboard
public void LoggingException(@Nullable() @Nullable() String message)
public void LoggingException(@Nullable() @Nullable() String message, @Nullable() @Nullable() Throwable cause)

Inherited properties

Link copied to clipboard
Link copied to clipboard

Inherited functions

Link copied to clipboard
public final synchronized void addSuppressed(Throwable exception)
Link copied to clipboard
public synchronized Throwable fillInStackTrace()
Link copied to clipboard
public synchronized Throwable getCause()
Link copied to clipboard
Link copied to clipboard
public String getMessage()
Link copied to clipboard
Link copied to clipboard
public final synchronized Array<Throwable> getSuppressed()
Link copied to clipboard
public synchronized Throwable initCause(Throwable cause)
Link copied to clipboard
public void printStackTrace()
Link copied to clipboard
public void setStackTrace(Array<StackTraceElement> stackTrace)
Link copied to clipboard
public String toString()