1 19 20 package org.netbeans.lib.ddl; 21 22 29 public class CommandNotSupportedException extends Exception  30 { 31 32 private String cmd; 33 34 static final long serialVersionUID =3121142575910991422L; 35 38 public CommandNotSupportedException (String command) { 39 super (); 40 cmd = command; 41 } 42 43 47 public CommandNotSupportedException (String command, String desc) { 48 super (desc); 49 cmd = command; 50 } 51 52 53 public String getCommand() 54 { 55 return cmd; 56 } 57 } 58 59 70 | Popular Tags |