mirror of
https://github.com/EpicEricEE/ShopChest.git
synced 2025-03-13 07:09:23 +01:00
As I Switched from Eclipse to IntelliJ IDEA, I also had to add a few entries to the .gitignore file.
20 lines
483 B
Java
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";
|
|
}
|
|
}
|