You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by ml...@apache.org on 2013/06/24 16:00:32 UTC

svn commit: r1496059 - /manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java

Author: mlizewski
Date: Mon Jun 24 14:00:32 2013
New Revision: 1496059

URL: http://svn.apache.org/r1496059
Log:
small fix

Modified:
    manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java

Modified: manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java
URL: http://svn.apache.org/viewvc/manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java?rev=1496059&r1=1496058&r2=1496059&view=diff
==============================================================================
--- manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java (original)
+++ manifoldcf/branches/CONNECTORS-727/connectors/generic/connector/src/main/java/org/apache/manifoldcf/crawler/connectors/generic/GenericConnector.java Mon Jun 24 14:00:32 2013
@@ -412,9 +412,9 @@ public class GenericConnector extends Ba
             throw new ManifoldCFException("processDocuments error: " + thr.getMessage(), thr);
           }
         } catch (InterruptedException ex) {
-          throw new ManifoldCFException("processDocuments error - invalid chars in id: " + ex.getMessage(), ex);
+          throw new ManifoldCFException("processDocuments error: " + ex.getMessage(), ex);
         } catch (UnsupportedEncodingException ex) {
-          throw new ManifoldCFException("processDocuments error - invalid chars in id: " + ex.getMessage(), ex);
+          throw new ManifoldCFException("processDocuments error: " + ex.getMessage(), ex);
         }
       }
     }