Source code: org/mule/util/ExceptionListener.java
1 /*
2 * $Header: /cvsroot/mule/mule/src/java/org/mule/util/ExceptionListener.java,v 1.4 2003/10/20 21:44:38 rossmason Exp $
3 * $Revision: 1.4 $
4 * $Date: 2003/10/20 21:44:38 $
5 * ------------------------------------------------------------------------------------------------------
6 *
7 * Copyright (c) Cubis Limited. All rights reserved.
8 * http://www.cubis.co.uk
9 *
10 * The software in this package is published under the terms of the BSD
11 * style license a copy of which has been included with this distribution in
12 * the LICENSE.txt file.
13 *
14 */
15
16 package org.mule.util;
17
18 /**
19 * <p><code>ExceptionListener</code> TODO (document class)
20 *
21 * @author <a href="mailto:ross.mason@cubis.co.uk">Ross Mason</a>
22 * @version $Revision: 1.4 $
23 */
24 public interface ExceptionListener
25 {
26 public void onException(Throwable throwable);
27 }