01: /*
02: * $Id: MuleRuntimeException.java 11239 2008-03-07 01:55:30Z 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:
15: /**
16: * <code>MuleRuntimeException</code> Is the base runtime exception type for the
17: * Mule Server any other runtimes exceptions thrown by Mule code will use or be based
18: * on this exception. Runtime exceptions in mule are only ever thrown where the
19: * method is not declared to throw an exception and the exception is serious.
20: */
21: public class MuleRuntimeException extends RuntimeException {
22: /**
23: * Serial version
24: */
25: private static final long serialVersionUID = 6728041560892553159L;
26:
27: /**
28: * @param message the exception message
29: */
30: public MuleRuntimeException(Message message) {
31: super (message.getMessage());
32: }
33:
34: /**
35: * @param message the exception message
36: * @param cause the exception that triggered this exception
37: */
38: public MuleRuntimeException(Message message, Throwable cause) {
39: super(message.getMessage(), cause);
40: }
41: }
|