1 /* 2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 3 * The software in this package is published under the terms of the CPAL v1.0 4 * license, a copy of which has been included with this distribution in the 5 * LICENSE.txt file. 6 */ 7 package org.mule.module.management; 8 9 import org.mule.api.MuleException; 10 import org.mule.config.i18n.Message; 11 12 /** 13 * <code>ManagementException</code> is a general exception thrown by management 14 * extensions. 15 */ 16 public abstract class ManagementException extends MuleException 17 { 18 /** 19 * @param message the exception message 20 */ 21 protected ManagementException(Message message) 22 { 23 super(message); 24 } 25 26 /** 27 * @param message the exception message 28 * @param cause the exception that cause this exception to be thrown 29 */ 30 protected ManagementException(Message message, Throwable cause) 31 { 32 super(message, cause); 33 } 34 35 protected ManagementException(Throwable cause) 36 { 37 super(cause); 38 } 39 }