gojekfarm/beast

View on GitHub
src/main/java/com/gojek/beast/exception/ErrorWriterFailedException.java

Summary

Maintainability
A
0 mins
Test Coverage
package com.gojek.beast.exception;

/**
 * Class models all exceptions that are generated from the handler while processing errors to DLQ.
 */
public class ErrorWriterFailedException extends RuntimeException {
    public ErrorWriterFailedException(Throwable cause) {
        super(cause);
    }
    public ErrorWriterFailedException(String message, Throwable cause) {
        super(message, cause);
    }
}