Coverage Report - org.mule.module.management.ManagementException
 
Classes in this File Line Coverage Branch Coverage Complexity
ManagementException
0%
0/6
N/A
1
 
 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  0
         super(message);
 24  0
     }
 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  0
         super(message, cause);
 33  0
     }
 34  
 
 35  
     protected ManagementException(Throwable cause)
 36  
     {
 37  0
         super(cause);
 38  0
     }
 39  
 }