11 lines
267 B
Java
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!");
|
|
}
|
|
}
|