001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi; 005 006 /** 007 * Use this exception only to carry over checked exception from 008 * anonymous classes 009 * @author Pavel Vlasov 010 * @version $Revision: 1.3 $ 011 */ 012 public class CarryOverException extends RuntimeException { 013 014 /** 015 * Comment for <code>serialVersionUID</code> 016 */ 017 private static final long serialVersionUID = -9153095276635479917L; 018 019 /** 020 * @param cause 021 */ 022 public CarryOverException(Throwable cause) { 023 super(cause); 024 } 025 026 /** 027 * 028 */ 029 public CarryOverException() { 030 } 031 }