Coverage Report - com.damnhandy.uri.template.UriTemplateBuilderException
 
Classes in this File Line Coverage Branch Coverage Complexity
UriTemplateBuilderException
25%
2/8
N/A
1
 
 1  
 /*
 2  
  *
 3  
  *
 4  
  */
 5  
 package com.damnhandy.uri.template;
 6  
 
 7  
 /**
 8  
  * Raised when there is invalid rule in the construction of a URI template, such as applying multiple
 9  
  * fragment expressions to a URI template. 
 10  
  * 
 11  
  * @author <a href="ryan@damnhandy.com">Ryan J. McDonough</a>
 12  
  * @version $Revision: 1.1 $
 13  
  */
 14  
 public class UriTemplateBuilderException extends RuntimeException
 15  
 {
 16  
 
 17  
    /** The serialVersionUID */
 18  
    private static final long serialVersionUID = -3011472988386059575L;
 19  
 
 20  
    /**
 21  
     * Create a new UriTemplateBuilderException.
 22  
     * 
 23  
     */
 24  
    public UriTemplateBuilderException()
 25  0
    {
 26  
  
 27  0
    }
 28  
 
 29  
    /**
 30  
     * Create a new UriTemplateBuilderException.
 31  
     * 
 32  
     * @param msg
 33  
     */
 34  
    public UriTemplateBuilderException(String msg)
 35  
    {
 36  2
       super(msg);
 37  2
    }
 38  
 
 39  
    /**
 40  
     * Create a new UriTemplateBuilderException.
 41  
     * 
 42  
     * @param e
 43  
     */
 44  
    public UriTemplateBuilderException(Throwable e)
 45  
    {
 46  0
       super(e);
 47  0
    }
 48  
 
 49  
    /**
 50  
     * Create a new UriTemplateBuilderException.
 51  
     * 
 52  
     * @param msg
 53  
     * @param e
 54  
     */
 55  
    public UriTemplateBuilderException(String msg, Throwable e)
 56  
    {
 57  0
       super(msg, e);
 58  0
    }
 59  
 
 60  
 }