Files
secondo/Javagui/JDBC/SecExceptions/NotCompSQL92Exception.java

11 lines
267 B
Java
Raw Normal View History

2026-01-23 17:03:45 +08:00
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!");
}
}