001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.codegen; 005 006 007 /** 008 * @author Pavel Vlasov 009 * @version $Revision: 1.3 $ 010 */ 011 public class GenerationException extends biz.hammurapi.Exception { 012 013 /** 014 * Comment for <code>serialVersionUID</code> 015 */ 016 private static final long serialVersionUID = 7282427752000355459L; 017 018 /** 019 * 020 */ 021 public GenerationException() { 022 super(); 023 // TODO Auto-generated constructor stub 024 } 025 026 /** 027 * @param message 028 */ 029 public GenerationException(String message) { 030 super(message); 031 // TODO Auto-generated constructor stub 032 } 033 034 /** 035 * @param message 036 * @param cause 037 */ 038 public GenerationException(String message, Throwable cause) { 039 super(message, cause); 040 // TODO Auto-generated constructor stub 041 } 042 043 /** 044 * @param cause 045 */ 046 public GenerationException(Throwable cause) { 047 super(cause); 048 // TODO Auto-generated constructor stub 049 } 050 }