Add generated serial version UIDs to exceptions

This commit is contained in:
Eric 2019-08-07 23:25:04 +02:00
parent 9a8491a79c
commit 2a1375254e
3 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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);
}
}

View File

@ -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 + "\"");
}
}