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

com.tambapps.http.garcon.logger.Logger Maven / Gradle / Ivy

package com.tambapps.http.garcon.logger;

public interface Logger {

  /**
   * Logs an error message
   *
   * @param message the message
   */
  void error(String message);

  /**
   * Logs an error message
   *
   * @param message the message
   * @param e       the throwable
   */
  void error(String message, Throwable e);


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy