mirror of
https://github.com/amalthea-mc/ShopChest.git
synced 2024-11-08 11:41:10 +00:00
Add generated serial version UIDs to exceptions
This commit is contained in:
parent
9a8491a79c
commit
2a1375254e
@ -1,9 +1,9 @@
|
||||
package de.epiceric.shopchest.exceptions;
|
||||
|
||||
public class ChestNotFoundException extends Exception {
|
||||
private static final long serialVersionUID = -6446875473671870708L;
|
||||
|
||||
public ChestNotFoundException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
package de.epiceric.shopchest.exceptions;
|
||||
|
||||
public class NotEnoughSpaceException extends Exception {
|
||||
private static final long serialVersionUID = 3718475607700458355L;
|
||||
|
||||
public NotEnoughSpaceException(String message) {
|
||||
super(message);
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
package de.epiceric.shopchest.exceptions;
|
||||
|
||||
public class WorldNotFoundException extends Exception {
|
||||
private static final long serialVersionUID = -555886332156936972L;
|
||||
|
||||
public WorldNotFoundException(String worldName) {
|
||||
super("Could not find world with name \"" + worldName + "\"");
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user