KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > umo > lifecycle > DisposeException


1 /*
2  * $Id: DisposeException.java 3798 2006-11-04 04:07:14Z aperepel $
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.umo.lifecycle;
12
13 import org.mule.config.i18n.Message;
14
15 /**
16  * <code>DisposeException</code> is an exception thrown
17  *
18  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
19  * @version $Revision: 3798 $
20  */

21
22 public class DisposeException extends LifecycleException
23 {
24     /**
25      * Serial version
26      */

27     private static final long serialVersionUID = 1714192290605243678L;
28
29     /**
30      * @param message the exception message
31      * @param component the object that failed during a lifecycle method call
32      */

33     public DisposeException(Message message, Object JavaDoc component)
34     {
35         super(message, component);
36     }
37
38     /**
39      * @param message the exception message
40      * @param cause the exception that cause this exception to be thrown
41      * @param component the object that failed during a lifecycle method call
42      */

43     public DisposeException(Message message, Throwable JavaDoc cause, Object JavaDoc component)
44     {
45         super(message, cause, component);
46     }
47
48     /**
49      * @param cause the exception that cause this exception to be thrown
50      * @param component the object that failed during a lifecycle method call
51      */

52     public DisposeException(Throwable JavaDoc cause, Object JavaDoc component)
53     {
54         super(cause, component);
55     }
56 }
57
Popular Tags