Coverage Report - com.damnhandy.uri.template.VarExploderException
 
Classes in this File Line Coverage Branch Coverage Complexity
VarExploderException
0%
0/4
N/A
1
 
 1  
 /*
 2  
  *
 3  
  *
 4  
  */
 5  
 package com.damnhandy.uri.template;
 6  
 
 7  
 /**
 8  
  * A VarExploderException.
 9  
  *
 10  
  * @author <a href="ryan@damnhandy.com">Ryan J. McDonough</a>
 11  
  * @version $Revision: 1.1 $
 12  
  * @since 1.2
 13  
  */
 14  
 public class VarExploderException extends VariableExpansionException
 15  
 {
 16  
 
 17  
    /** The serialVersionUID */
 18  
    private static final long serialVersionUID = -3859548780063196996L;
 19  
 
 20  
    /**
 21  
     * Create a new VarExploderException.
 22  
     *
 23  
     * @param message
 24  
     * @param cause
 25  
     */
 26  
    public VarExploderException(String message, Throwable cause)
 27  
    {
 28  0
       super(message, cause);
 29  0
    }
 30  
 
 31  
    /**
 32  
     * Create a new VarExploderException.
 33  
     *
 34  
     * @param cause
 35  
     */
 36  
    public VarExploderException(Throwable cause)
 37  
    {
 38  0
       super(cause);
 39  0
    }
 40  
 
 41  
 
 42  
 }