Coverage Report - jaggregate.internal.NonLocalReturnException
 
Classes in this File Line Coverage Branch Coverage Complexity
NonLocalReturnException
100%
2/2
N/A
1
 
 1  
 /*
 2  
  Copyright 2004-2008 Paul R. Holser, Jr.  All rights reserved.
 3  
  Licensed under the Academic Free License version 3.0
 4  
  */
 5  
 
 6  
 package jaggregate.internal;
 7  
 
 8  
 /**
 9  
  * Used to simulate non-local returns from Smalltalk blocks.
 10  
  *
 11  
  * @author <a href="mailto:pholser@alumni.rice.edu">Paul Holser</a>
 12  
  * @version $Id: NonLocalReturnException.java,v 1.2 2008/03/30 03:07:11 pholser Exp $
 13  
  */
 14  
 public class NonLocalReturnException extends RuntimeException {
 15  
     private static final long serialVersionUID = -1L;
 16  
 
 17  
     /**
 18  
      * Creates a new exception.
 19  
      */
 20  1246
     public NonLocalReturnException() {
 21  
         // empty on purpose
 22  1246
     }
 23  
 }