01: /*
02: * Created on Oct 20, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package biz.hammurapi.codegen;
08:
09: import biz.hammurapi.RuntimeException;
10:
11: public class DocumentingException extends RuntimeException {
12:
13: /**
14: * Comment for <code>serialVersionUID</code>
15: */
16: private static final long serialVersionUID = 308172113450906853L;
17:
18: public DocumentingException(String message, Throwable cause) {
19: super (message, cause);
20: // TODO Auto-generated constructor stub
21: }
22: }
|