Coverage Report - org.mule.api.construct.FlowConstructInvalidException
 
Classes in this File Line Coverage Branch Coverage Complexity
FlowConstructInvalidException
0%
0/9
N/A
1
 
 1  
 /*
 2  
  * $Id$
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.api.construct;
 12  
 
 13  
 import org.mule.api.MuleException;
 14  
 import org.mule.config.i18n.Message;
 15  
 
 16  
 public class FlowConstructInvalidException extends MuleException
 17  
 {
 18  
 
 19  
     private static final long serialVersionUID = -8170840339166473625L;
 20  
 
 21  
     public FlowConstructInvalidException(Message message, Throwable cause)
 22  
     {
 23  0
         super(message, cause);
 24  0
     }
 25  
 
 26  
     public FlowConstructInvalidException(Message message)
 27  
     {
 28  0
         super(message);
 29  0
     }
 30  
 
 31  
     public FlowConstructInvalidException(Message message, FlowConstruct flowConstruct)
 32  
     {
 33  0
         super(message);
 34  0
         addInfo("FlowConstruct", flowConstruct);
 35  0
     }
 36  
 
 37  
     public FlowConstructInvalidException(Throwable cause)
 38  
     {
 39  0
         super(cause);
 40  0
     }
 41  
 
 42  
 }