001    package org.trails.validation;
002    
003    import org.trails.descriptor.IPropertyDescriptor;
004    
005    public class OrphanException extends ValidationException
006    {
007    
008            public OrphanException()
009            {
010                    super();
011                    // TODO Auto-generated constructor stub
012            }
013    
014            public OrphanException(IPropertyDescriptor descriptor, String message)
015            {
016                    super(descriptor, message);
017                    // TODO Auto-generated constructor stub
018            }
019    
020            public OrphanException(IPropertyDescriptor descriptor)
021            {
022                    super(descriptor);
023                    // TODO Auto-generated constructor stub
024            }
025    
026            public OrphanException(String message, Throwable cause)
027            {
028                    super(message, cause);
029                    // TODO Auto-generated constructor stub
030            }
031    
032            public OrphanException(String message)
033            {
034                    super(message);
035                    // TODO Auto-generated constructor stub
036            }
037    
038            public OrphanException(Throwable cause)
039            {
040                    super(cause);
041                    // TODO Auto-generated constructor stub
042            }
043    
044    }