ShopChest/src/de/epiceric/shopchest/sql/Errors.java
Eric 543da0682b Automated code cleanup by IntelliJ IDEA
As I Switched from Eclipse to IntelliJ IDEA, I also had to add a few
entries to the .gitignore file.
2016-05-28 16:28:13 +02:00

20 lines
483 B
Java

package de.epiceric.shopchest.sql;
public class Errors {
public static String sqlConnectionExecute() {
return "Couldn't execute MySQL statement: ";
}
public static String sqlConnectionClose() {
return "Failed to close MySQL connection: ";
}
public static String noSQLConnection() {
return "Unable to retreive MYSQL connection: ";
}
public static String noTableFound() {
return "Database Error: No Table Found";
}
}