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

io.takari.builder.Messages Maven / Gradle / Ivy

package io.takari.builder;

import java.io.File;
import java.nio.file.Path;

// TODO Messager is probably a better name
public interface Messages {
  void info(File resource, int line, int column, String message, Throwable cause);

  void warn(File resource, int line, int column, String message, Throwable cause);

  void error(File resource, int line, int column, String message, Throwable cause);

  void info(Path resource, int line, int column, String message, Throwable cause);

  void warn(Path resource, int line, int column, String message, Throwable cause);

  void error(Path resource, int line, int column, String message, Throwable cause);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy