ShopChest/src/de/epiceric/shopchest/sql/Errors.java

20 lines
483 B
Java
Raw Normal View History

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