Files
secondo/Javagui/JDBC/SecExceptions/NotSuppException.java
2026-01-23 17:03:45 +08:00

18 lines
474 B
Java

package SecExceptions;
import SQL2Secondo.ErrorCodes;
import SQL2Secondo.Translator;
import java.io.*;
import Ext_Tools.completeAnswer;
public class NotSuppException extends IOException {
public NotSuppException(String s) {
super();
/*super(ErrorCodes.NoComp1Ln+ErrorCodes.NoComp2Ln+"\""
+s.toUpperCase()+ErrorCodes.NoComp3Ln);*/
System.out.println(ErrorCodes.NoComp1Ln+ErrorCodes.NoComp2Ln+"\""
+s.toUpperCase()+ErrorCodes.NoComp3Ln);
}
}