1 19 20 package org.netbeans.lib.ddl; 21 22 31 public class DatabaseProductNotFoundException extends Exception  32 { 33 34 private String sname; 35 36 static final long serialVersionUID =-1108211224066947350L; 37 40 public DatabaseProductNotFoundException (String spec) { 41 super (); 42 sname = spec; 43 } 44 45 49 public DatabaseProductNotFoundException (String spec, String desc) { 50 super (desc); 51 sname = spec; 52 } 53 54 58 public String getDatabaseProductName() 59 { 60 return sname; 61 } 62 } 63 64 76 | Popular Tags |