package de.ugoe.cs.util.console.listener; import de.ugoe.cs.util.console.Console; /** *

* Received all exceptions passed to the {@link Console} for logging. *

* * @author Steffen Herbold * @version 1.0 */ public interface IExceptionListener { /** *

* Logs an exception passed to the {@link Console}. *

* * @param e * Exception that is logged */ public void logException(Exception e); }