mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Added private static final UID
By: durron597 <martin.jared@gmail.com>
This commit is contained in:
parent
a2010332f6
commit
4ef3cfa0e8
3 changed files with 6 additions and 3 deletions
|
@ -1,6 +1,7 @@
|
||||||
package org.bukkit.event;
|
package org.bukkit.event;
|
||||||
|
|
||||||
public class EventException extends Exception {
|
public class EventException extends Exception {
|
||||||
|
private static final long serialVersionUID = 3532808232324183999L;
|
||||||
private final Throwable cause;
|
private final Throwable cause;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -5,6 +5,7 @@ package org.bukkit.plugin;
|
||||||
* Thrown when attempting to load an invalid PluginDescriptionFile
|
* Thrown when attempting to load an invalid PluginDescriptionFile
|
||||||
*/
|
*/
|
||||||
public class InvalidDescriptionException extends Exception {
|
public class InvalidDescriptionException extends Exception {
|
||||||
|
private static final long serialVersionUID = 5721389122281775894L;
|
||||||
private final Throwable cause;
|
private final Throwable cause;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -5,6 +5,7 @@ package org.bukkit.plugin;
|
||||||
* Thrown when attempting to load an invalid Plugin file
|
* Thrown when attempting to load an invalid Plugin file
|
||||||
*/
|
*/
|
||||||
public class InvalidPluginException extends Exception {
|
public class InvalidPluginException extends Exception {
|
||||||
|
private static final long serialVersionUID = -8242141640709409542L;
|
||||||
private final Throwable cause;
|
private final Throwable cause;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue