Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorcbrealey2004-12-08 17:26:01 +0000
committercbrealey2004-12-08 17:26:01 +0000
commit31ee6111747669fbc4dc878f18b4976c139d8516 (patch)
tree8ae7af9013ea1130048c4f116960420d7a1bb144 /bundles/org.eclipse.wst.ws.parser/src
parenta7d55e5bf6b01d3f745344a56fcd337bdbab5387 (diff)
downloadwebtools.webservices-31ee6111747669fbc4dc878f18b4976c139d8516.tar.gz
webtools.webservices-31ee6111747669fbc4dc878f18b4976c139d8516.tar.xz
webtools.webservices-31ee6111747669fbc4dc878f18b4976c139d8516.zip
[80489] Fix compilation warnings in org.eclipse.wst.ws.parser
Diffstat (limited to 'bundles/org.eclipse.wst.ws.parser/src')
-rw-r--r--bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/IllegalArgumentsException.java2
-rw-r--r--bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/WWWAuthenticationException.java2
2 files changed, 4 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/IllegalArgumentsException.java b/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/IllegalArgumentsException.java
index 77788d83f..4a3cf0fc9 100644
--- a/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/IllegalArgumentsException.java
+++ b/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/IllegalArgumentsException.java
@@ -13,6 +13,8 @@ package org.eclipse.wst.ws.parser.wsil;
public class IllegalArgumentsException extends Exception
{
+ private static final long serialVersionUID = -2533981176285561234L;
+
public IllegalArgumentsException(String arg)
{
super(arg);
diff --git a/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/WWWAuthenticationException.java b/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/WWWAuthenticationException.java
index 09fde2e51..723a361ac 100644
--- a/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/WWWAuthenticationException.java
+++ b/bundles/org.eclipse.wst.ws.parser/src/org/eclipse/wst/ws/parser/wsil/WWWAuthenticationException.java
@@ -15,6 +15,8 @@ import java.io.IOException;
public class WWWAuthenticationException extends Exception
{
+ private static final long serialVersionUID = -4918211021620316049L;
+
private IOException ioe_;
private String wwwAuthMsg_;
private String url_;

Back to the top