Author: kwright
Date: Tue Jun 5 09:39:56 2012
New Revision: 1346314
URL: http://svn.apache.org/viewvc?rev=1346314&view=rev
Log:
Fix interface implementation of runtime exception.
Modified:
incubator/lcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/exception/EngineRuntimeException.java
Modified:
incubator/lcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/exception/EngineRuntimeException.java
URL:
http://svn.apache.org/viewvc/incubator/lcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/exception/EngineRuntimeException.java?rev=1346314&r1=1346313&r2=1346314&view=diff
==============================================================================
---
incubator/lcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/exception/EngineRuntimeException.java
(original)
+++
incubator/lcf/branches/CONNECTORS-474/connectors/filenet/build-stub/src/main/java/com/filenet/api/exception/EngineRuntimeException.java
Tue Jun 5 09:39:56 2012
@@ -20,10 +20,21 @@ package com.filenet.api.exception;
/** Stub interface to allow the connector to build fully.
*/
-public class EngineRuntimeException extends RuntimeException
+public class EngineRuntimeException extends RuntimeException implements
java.io.Externalizable
{
public ExceptionCode getExceptionCode()
{
return null;
}
+
+ public void writeExternal(java.io.ObjectOutput out)
+ throws java.io.IOException
+ {
+ }
+
+ public void readExternal(java.io.ObjectInput in)
+ throws java.io.IOException, ClassNotFoundException
+ {
+ }
+
}