KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > samples > errorhandler > HandlerException


1 /*
2  * $Id: HandlerException.java 3167 2006-09-22 15:47:04Z holger $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.samples.errorhandler;
12
13 import org.mule.config.i18n.Message;
14 import org.mule.umo.UMOException;
15
16 public class HandlerException extends UMOException
17 {
18
19     /**
20      * Serial version
21      */

22     private static final long serialVersionUID = -1446892313657626797L;
23
24     public HandlerException(String JavaDoc message)
25     {
26         super(Message.createStaticMessage(message));
27     }
28
29     public HandlerException(String JavaDoc message, Throwable JavaDoc cause)
30     {
31         super(Message.createStaticMessage(message), cause);
32     }
33
34 }
35
Popular Tags