You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-cvs@xml.apache.org by mr...@apache.org on 2006/02/24 23:13:03 UTC

svn commit: r380833 - /xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java

Author: mrglavas
Date: Fri Feb 24 14:13:01 2006
New Revision: 380833

URL: http://svn.apache.org/viewcvs?rev=380833&view=rev
Log:
A previous commit broke serialization compatiblity. Adding a serialVersionUID to resolve this.

Modified:
    xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java

Modified: xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java
URL: http://svn.apache.org/viewcvs/xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java?rev=380833&r1=380832&r2=380833&view=diff
==============================================================================
--- xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java (original)
+++ xml/commons/trunk/java/external/src/javax/xml/transform/TransformerException.java Fri Feb 24 14:13:01 2006
@@ -1,5 +1,5 @@
 /*
- * Copyright 2003-2004 The Apache Software Foundation.
+ * Copyright 2003-2004,2006 The Apache Software Foundation.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -26,6 +26,9 @@
  * during the transformation process.
  */
 public class TransformerException extends Exception {
+    
+    // Added serialVersionUID to preserve binary compatibility 
+    private static final long serialVersionUID = 975798773772956428L;
 
     /** Field locator specifies where the error occured */
     SourceLocator locator;