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

simple.common.ErrorDrain Maven / Gradle / Ivy

The newest version!

package simple.common;

/**
 * ErrorDrain registers error messages while executing some algorithm like parsing command line texts.
 *
 * @author Martin Fuchs
 */
public interface ErrorDrain {

	void setError(String error);
	boolean hasError();
	String getErrorString();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy