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