1 24 25 package org.objectweb.cjdbc.common.exceptions; 26 27 import java.sql.SQLException ; 28 29 36 public class NotImplementedException extends SQLException 37 { 38 private static final long serialVersionUID = 6615147787748938642L; 39 40 47 public NotImplementedException( 48 String reason, 49 String sqlState, 50 int vendorCode) 51 { 52 super(reason, sqlState, vendorCode); 53 } 54 55 61 public NotImplementedException(String reason, String sqlState) 62 { 63 super(reason, sqlState); 64 } 65 66 71 public NotImplementedException(String callingMethod) 72 { 73 super(callingMethod + " not implemented"); 74 } 75 76 79 public NotImplementedException() 80 { 81 super("Feature not implemented"); 82 } 83 } 84 | Popular Tags |