source: trunk/JavaHelperLib/src/de/ugoe/cs/util/console/listener/IExceptionListener.java @ 210

Last change on this file since 210 was 210, checked in by sherbold, 13 years ago
  • renamed de.ugoe.cs.util.console.Console#printStacktrace() and de.ugoe.cs.util.console.listener.IExceptionListener#printStackstrace() to #logException
  • Property svn:mime-type set to text/plain
File size: 467 bytes
Line 
1package de.ugoe.cs.util.console.listener;
2
3import de.ugoe.cs.util.console.Console;
4
5/**
6 * <p>
7 * Received all exceptions passed to the {@link Console} for logging.
8 * </p>
9 *
10 * @author Steffen Herbold
11 * @version 1.0
12 */
13public interface IExceptionListener {
14
15        /**
16         * <p>
17         * Logs an exception passed to the {@link Console}.
18         * </p>
19         *
20         * @param e
21         *            Exception that is logged
22         */
23        public void logException(Exception e);
24}
Note: See TracBrowser for help on using the repository browser.