View Javadoc

1   /*
2    * SyntaxException.java
3    *
4    * Created on April 18, 2005, 7:30 PM
5    */
6   
7   package org.wiztools.xml2spreadsheet.exception;
8   
9   /***
10   *
11   * @author subhash
12   */
13  public class OperationException extends XML2XLSFatalException{
14      
15      /*** Creates a new instance of SyntaxException */
16      public OperationException(String str) {
17          super(str);
18      }
19      
20  }