Edit serialVersionUID in exceptions

pull/10/head
Louis Royer 5 years ago
parent 4410bfee99
commit a77de625d6

@ -1,4 +1,4 @@
package exception; package exception;
public class InternalError extends Exception { public class InternalError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package exception; package exception;
public class ProtocolError extends Exception { public class ProtocolError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,5 +1,5 @@
package exception; package exception;
/** Used on reception side when size as set in datagram is too big, and we cant store this in a int/long as usual. */ /** Used on reception side when size as set in datagram is too big, and we cant store this in a int/long as usual. */
public class SizeError extends Exception { public class SizeError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package exception; package exception;
public class TransmissionError extends Exception { public class TransmissionError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package exception; package exception;
public class VersionError extends Exception { public class VersionError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class EmptyDirectory extends Exception { public class EmptyDirectory extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class EmptyFile extends Exception { public class EmptyFile extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class InternalRemoteError extends Exception { public class InternalRemoteError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class NotFound extends Exception { public class NotFound extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class ProtocolRemoteError extends Exception { public class ProtocolRemoteError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

@ -1,4 +1,4 @@
package remoteException; package remoteException;
public class VersionRemoteError extends Exception { public class VersionRemoteError extends Exception {
private static final long serialVersionUID = 11L; private static final long serialVersionUID = 12L;
} }

Loading…
Cancel
Save