home *** CD-ROM | disk | FTP | other *** search
Java Source | 2002-12-19 | 1.0 KB | 35 lines |
- package com.ibm.extricity.adapters.mqseries.mqak;
-
- /**
- * Insert the type's description here.
- * Creation date: (4/19/01 9:56:24 AM)
- * @author: Administrator
- */
- public class DummyExceptionLogExt implements MQAOExceptionLogExt
- {
- /**
- * DummyExceptionLogExt constructor comment.
- */
- public DummyExceptionLogExt()
- {
- super();
- }
- /**
- * Insert the method's description here.
- * Creation date: (4/19/01 9:56:24 AM)
- * @return long
- * @param msgId java.lang.String
- * @param subcomponent java.lang.String
- * @param ppName java.lang.String
- * @param ppid java.lang.String
- * @param message java.lang.String
- * @exception java.lang.Exception The exception description.
- * @exception com.ibm.epic.common.EpicException The exception description.
- */
- public long logFromMsgFile(String exceptionId, String subComponent, String processName, String processID, String logMessage, String extData)
- throws Exception
- {
- System.out.println("logFromMsgFile: Log=!"+exceptionId+"!: "+subComponent+" "+processName+" "+processID+" "+logMessage);
- return 0;
- }
- }