org.thewonderlemming.c4plantuml.commons.Reporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of c4plantuml-commons-lib Show documentation
Show all versions of c4plantuml-commons-lib Show documentation
A small library to share objects between the various libraries
The newest version!
package org.thewonderlemming.c4plantuml.commons;
/**
* An interface to report issues to.
*
* @author thewonderlemming
*
*/
public interface Reporter {
/**
* Reports a issue.
*
* @param message the description of the issue.
*/
void report(final String message);
}