[freenet-cvs] r14680 - in trunk/freenet/src/freenet: client/async keys

nextgens at freenetproject.org nextgens at freenetproject.org
Tue Aug 14 04:17:04 UTC 2007


Author: nextgens
Date: 2007-08-14 04:17:04 +0000 (Tue, 14 Aug 2007)
New Revision: 14680

Modified:
   trunk/freenet/src/freenet/client/async/BinaryBlobFormatException.java
   trunk/freenet/src/freenet/keys/TooBigException.java
Log:
Add serialization stuffs were requested by eclipse

Modified: trunk/freenet/src/freenet/client/async/BinaryBlobFormatException.java
===================================================================
--- trunk/freenet/src/freenet/client/async/BinaryBlobFormatException.java	2007-08-14 04:15:59 UTC (rev 14679)
+++ trunk/freenet/src/freenet/client/async/BinaryBlobFormatException.java	2007-08-14 04:17:04 UTC (rev 14680)
@@ -4,6 +4,11 @@
 
 public class BinaryBlobFormatException extends Exception {
 
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+
 	public BinaryBlobFormatException(String message) {
 		super(message);
 	}

Modified: trunk/freenet/src/freenet/keys/TooBigException.java
===================================================================
--- trunk/freenet/src/freenet/keys/TooBigException.java	2007-08-14 04:15:59 UTC (rev 14679)
+++ trunk/freenet/src/freenet/keys/TooBigException.java	2007-08-14 04:17:04 UTC (rev 14680)
@@ -4,6 +4,11 @@
 
 public class TooBigException extends IOException {
 
+	/**
+	 * 
+	 */
+	private static final long serialVersionUID = 1L;
+
 	public TooBigException(String msg) {
 		super(msg);
 	}




More information about the cvs mailing list