Coverage Report - com.ccg.macros.InterpretException
 
Classes in this File Line Coverage Branch Coverage Complexity
InterpretException
0% 
N/A 
1
 
 1  
 /*----------------------------------------------------------------
 2  
  * $Id: InterpretException.java,v 1.1.1.1 2004/01/26 20:46:18 pkb Exp $
 3  
  * 
 4  
  * (c)2000 - Paul Blankenbaker
 5  
  *
 6  
  * Revision Log
 7  
  * 
 8  
  *  2000-11-14 13:40:39        Paul Blankenbaker 
 9  
  * 
 10  
  *         Created initial version
 11  
  */
 12  
 //----------------------------------------------------------------
 13  
 
 14  
 package com.ccg.macros;
 15  
 
 16  
 //----------------------------------------------------------------
 17  
 /** Base exception class for errors which occur while processing macros.
 18  
  * 
 19  
  * @version $Revision: 1.1.1.1 $
 20  
  * 
 21  
  * @since 1.0
 22  
  * 
 23  
  * @author $Author: pkb $
 24  
  * 
 25  
  * @see Interpreter */
 26  
 //----------------------------------------------------------------
 27  
 
 28  
 public class InterpretException extends Exception {
 29  
 
 30  
   /** UID for serialization. */
 31  
         private static final long serialVersionUID = 8598285380105353266L;
 32  
 
 33  
 
 34  
 //----------------------------------------------------------------
 35  
   /** Default constructor (message not set).
 36  
    * 
 37  
    * @since        1.0 */
 38  
   //----------------------------------------------------------------
 39  
 
 40  
   public InterpretException() {
 41  0
     super();
 42  0
   }
 43  
 
 44  
 
 45  
   //----------------------------------------------------------------
 46  
   /** Construct with initial message.
 47  
    * 
 48  
    * @param        msg
 49  
    * 
 50  
    *         Error message indicating problem.
 51  
    * 
 52  
    * @since        1.0 */
 53  
   //----------------------------------------------------------------
 54  
 
 55  
   public InterpretException(String msg) {
 56  0
     super(msg);
 57  0
   }
 58  
 
 59  
 }