1 24 25 package org.objectweb.cjdbc.driver.protocol; 26 27 import org.objectweb.cjdbc.common.exceptions.CJDBCException; 28 29 36 public class CommandCompleted extends CJDBCException 37 { 38 private static final long serialVersionUID = -958502170680893639L; 39 40 43 public CommandCompleted() 44 { 45 super(); 46 } 47 48 51 public CommandCompleted(String message) 52 { 53 super(message); 54 } 55 56 59 public CommandCompleted(Throwable cause) 60 { 61 super(cause); 62 } 63 64 67 public CommandCompleted(String message, Throwable cause) 68 { 69 super(message, cause); 70 } 71 } 72 | Popular Tags |