View Javadoc
1   package net.avcompris.commons3.notifier;
2   
3   import javax.annotation.Nullable;
4   
5   public interface ErrorNotifier {
6   
7   	void notifyError(@Nullable String correlationId, @Nullable String username, Throwable throwable);
8   }