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

11 lines
267 B
Java

package SecExceptions;
import java.sql.SQLException;
public class NotCompSQL92Exception extends SQLException {
public NotCompSQL92Exception(String s) {
super(s.toUpperCase() + " is not part of SQL92 and is therefore not supported in secondo!");
}
}