1 24 25 package org.objectweb.cjdbc.controller.loadbalancer.policies.createtable; 26 27 import org.objectweb.cjdbc.common.exceptions.CJDBCException; 28 29 38 public class CreateTableException extends CJDBCException 39 { 40 private static final long serialVersionUID = -1818582588221008537L; 41 42 45 public CreateTableException() 46 { 47 super(); 48 } 49 50 55 public CreateTableException(String message) 56 { 57 super(message); 58 } 59 60 65 public CreateTableException(Throwable cause) 66 { 67 super(cause); 68 } 69 70 76 public CreateTableException(String message, Throwable cause) 77 { 78 super(message, cause); 79 } 80 } | Popular Tags |