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

14 lines
318 B
Java

package SecExceptions;
import SQL2Secondo.ErrorCodes;
import java.sql.SQLException;
public class NotSuppMetaDBaseException extends SQLException {
public NotSuppMetaDBaseException(String s) {
super(ErrorCodes.NoComp1Ln + ErrorCodes.NoComp2Ln + s.toUpperCase() + ErrorCodes.NoCompMetaData);
}
}