Coverage Report - org.mule.umo.model.ModelException
 
Classes in this File Line Coverage Branch Coverage Complexity
ModelException
100%
4/4
N/A
1
 
 1  
 /*
 2  
  * $Id: ModelException.java 7963 2007-08-21 08:53:15Z dirk.olmes $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.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.umo.model;
 12  
 
 13  
 import org.mule.config.i18n.Message;
 14  
 import org.mule.umo.UMOException;
 15  
 
 16  
 public class ModelException extends UMOException
 17  
 {
 18  
     /**
 19  
      * Serial version
 20  
      */
 21  
     private static final long serialVersionUID = -4593985962209518596L;
 22  
 
 23  
     /**
 24  
      * @param message the exception message
 25  
      */
 26  
     public ModelException(Message message)
 27  
     {
 28  2
         super(message);
 29  2
     }
 30  
 
 31  
     /**
 32  
      * @param message the exception message
 33  
      * @param cause the exception that cause this exception to be thrown
 34  
      */
 35  
     public ModelException(Message message, Throwable cause)
 36  
     {
 37  10
         super(message, cause);
 38  10
     }
 39  
 
 40  
 }