home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: Java / Java.zip / mqaoad21.zip / DummyExceptionLogExt.java next >
Text File  |  2002-12-19  |  1KB  |  35 lines

  1. package com.ibm.extricity.adapters.mqseries.mqak;
  2.  
  3. /**
  4.  * Insert the type's description here.
  5.  * Creation date: (4/19/01 9:56:24 AM)
  6.  * @author: Administrator
  7.  */
  8. public class DummyExceptionLogExt implements MQAOExceptionLogExt
  9. {
  10. /**
  11.  * DummyExceptionLogExt constructor comment.
  12.  */
  13. public DummyExceptionLogExt()
  14. {
  15.     super();
  16. }
  17. /**
  18.  * Insert the method's description here.
  19.  * Creation date: (4/19/01 9:56:24 AM)
  20.  * @return long
  21.  * @param msgId java.lang.String
  22.  * @param subcomponent java.lang.String
  23.  * @param ppName java.lang.String
  24.  * @param ppid java.lang.String
  25.  * @param message java.lang.String
  26.  * @exception java.lang.Exception The exception description.
  27.  * @exception com.ibm.epic.common.EpicException The exception description.
  28.  */
  29. public long logFromMsgFile(String exceptionId, String subComponent, String processName, String processID, String logMessage, String extData)
  30.     throws Exception
  31. {
  32.     System.out.println("logFromMsgFile: Log=!"+exceptionId+"!: "+subComponent+" "+processName+" "+processID+" "+logMessage);
  33.     return 0;
  34. }
  35. }