Coverage Report - org.wiztools.xml2spreadsheet.exception.XMLSyntaxException
 
Classes in this File Line Coverage Branch Coverage Complexity
XMLSyntaxException
0% 
N/A 
1
 
 1  
 /*
 2  
  * XMLSyntaxException.java
 3  
  *
 4  
  * Created on April 5, 2005, 7:40 PM
 5  
  */
 6  
 
 7  
 package org.wiztools.xml2spreadsheet.exception;
 8  
 
 9  
 /**
 10  
  *
 11  
  * @author subhash
 12  
  */
 13  
 public class XMLSyntaxException extends XML2XLSFatalException{
 14  
     
 15  
     /** Creates a new instance of XMLSyntaxException */
 16  
     public XMLSyntaxException(String str) {
 17  0
         super(str);
 18  0
     }
 19  
     
 20  
 }