01: /*
02: * $Id: DefaultMuleException.java 10489 2008-01-23 17:53:38Z dfeist $
03: * --------------------------------------------------------------------------------------
04: * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
05: *
06: * The software in this package is published under the terms of the CPAL v1.0
07: * license, a copy of which has been included with this distribution in the
08: * LICENSE.txt file.
09: */
10:
11: package org.mule.api;
12:
13: import org.mule.config.i18n.Message;
14: import org.mule.config.i18n.MessageFactory;
15:
16: /**
17: * <code>MuleException</code> Is the base exception type for the Mule application
18: * any other exceptions thrown by Mule code will be based on this exception.
19: */
20: public class DefaultMuleException extends MuleException {
21: /**
22: * Serial version
23: */
24: private static final long serialVersionUID = 2554735072826262515L;
25:
26: public DefaultMuleException(String message) {
27: this (MessageFactory.createStaticMessage(message));
28: }
29:
30: /**
31: * @param message the exception message
32: */
33: public DefaultMuleException(Message message) {
34: super (message);
35: }
36:
37: public DefaultMuleException(String message, Throwable cause) {
38: this (MessageFactory.createStaticMessage(message), cause);
39: }
40:
41: /**
42: * @param message the exception message
43: * @param cause the exception that cause this exception to be thrown
44: */
45: public DefaultMuleException(Message message, Throwable cause) {
46: super (message, cause);
47: }
48:
49: public DefaultMuleException(Throwable cause) {
50: super(cause);
51: }
52: }
|