All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hubspot.singularity.sentry.NotifyingUncaughtExceptionManager Maven / Gradle / Ivy

package com.hubspot.singularity.sentry;

import java.lang.Thread.UncaughtExceptionHandler;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class NotifyingUncaughtExceptionManager implements UncaughtExceptionHandler {
  private static final Logger LOG = LoggerFactory.getLogger(NotifyingUncaughtExceptionManager.class);

  private final SingularityExceptionNotifier notifier;

  public NotifyingUncaughtExceptionManager(SingularityExceptionNotifier notifier) {
    this.notifier = notifier;
  }

  @Override
  public void uncaughtException(Thread t, Throwable e) {
    LOG.error("Uncaught exception!", e);
    notifier.notify(String.format("Uncaught Exception (%s)", e.getMessage()), e);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy