Coverage Report - org.trails.validation.OrphanException
 
Classes in this File Line Coverage Branch Coverage Complexity
OrphanException
17% 
N/A 
1
 
 1  
 package org.trails.validation;
 2  
 
 3  
 import org.trails.descriptor.IPropertyDescriptor;
 4  
 
 5  
 public class OrphanException extends ValidationException
 6  
 {
 7  
 
 8  
         public OrphanException()
 9  
         {
 10  0
                 super();
 11  
                 // TODO Auto-generated constructor stub
 12  0
         }
 13  
 
 14  
         public OrphanException(IPropertyDescriptor descriptor, String message)
 15  
         {
 16  0
                 super(descriptor, message);
 17  
                 // TODO Auto-generated constructor stub
 18  0
         }
 19  
 
 20  
         public OrphanException(IPropertyDescriptor descriptor)
 21  
         {
 22  0
                 super(descriptor);
 23  
                 // TODO Auto-generated constructor stub
 24  0
         }
 25  
 
 26  
         public OrphanException(String message, Throwable cause)
 27  
         {
 28  0
                 super(message, cause);
 29  
                 // TODO Auto-generated constructor stub
 30  0
         }
 31  
 
 32  
         public OrphanException(String message)
 33  
         {
 34  8
                 super(message);
 35  
                 // TODO Auto-generated constructor stub
 36  8
         }
 37  
 
 38  
         public OrphanException(Throwable cause)
 39  
         {
 40  0
                 super(cause);
 41  
                 // TODO Auto-generated constructor stub
 42  0
         }
 43  
 
 44  
 }