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