From 2acc4d61d800ecb31ac8a0045d7e04818ec4c1cf Mon Sep 17 00:00:00 2001 From: dizmo Date: Fri, 31 Aug 2007 16:43:01 +0000 Subject: [PATCH] I am adding a simple change to PHPEvalException.java to try and fix errors during the build. I have added static final long serialVersionUID to the file with 200708311126120L as the value. This is just the date_time_version that i made the change. --- .../debug/core/watch/PHPEvalException.java | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/watch/PHPEvalException.java b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/watch/PHPEvalException.java index 52f02be..4a335fa 100644 --- a/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/watch/PHPEvalException.java +++ b/net.sourceforge.phpeclipse.debug.core/src/net/sourceforge/phpdt/internal/debug/core/watch/PHPEvalException.java @@ -2,8 +2,10 @@ package net.sourceforge.phpdt.internal.debug.core.watch; public class PHPEvalException extends Exception { + static final long serialVersionUID = 200708311126120L; + public PHPEvalException(String s) { super(s); } -} \ No newline at end of file +} -- 1.7.1