Back to project page sdk-hyphenation.
The source code is released under:
GNU Lesser General Public License
If you think the Android project sdk-hyphenation listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.silpa.hyphenation.util; //from ww w.ja v a2s .c o m /** * Generic Error Handler interface */ public interface ErrorHandler { /** * debug * * @param domain a string used to display debugging information selectively * @param message debugging information */ public void debug(String domain, String message); /** * say something * * @param s the thing to say */ public void info(String s); /** * report a warning * * @param s explanation */ public void warning(String s); /** * report an error * * @param s explanation */ public void error(String s); /** * report an error caused by a caught exception; * * @param s explanation * @param e exception */ public void exception(String s, Exception e); }