View Javadoc
1 /*
2 * Created on 09-Mar-2004
3 *
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
6 */
7 package org.enableit.db.darrt;
8
9 import java.util.List;
10
11 /***
12 * @author TimSt
13 *
14 * To change the template for this generated type comment go to
15 * Window>Preferences>Java>Code Generation>Code and Comments
16 */
17 public class TempSchemaHandlingException extends SchemaHandlingException {
18
19 /***
20 * Data definition statements that failed but may be retried.
21 * <p>e.g. A foreign key constraint may be retries after the referenced
22 * table has been created.</p>
23 */
24 private List deferredDDL ;
25
26 /***
27 * @param string
28 * @param deferredDDL
29 */
30 public TempSchemaHandlingException(String string, List ddl) {
31 super() ;
32 setDeferredDDL(ddl) ;
33 }
34
35
36 /***
37 * @return
38 */
39 public List getDeferredDDL() {
40 return deferredDDL;
41 }
42
43 /***
44 * @param list
45 */
46 public void setDeferredDDL(List list) {
47 deferredDDL = list;
48 }
49
50 }
This page was automatically generated by Maven