01: package org.wfmc.wapi; 02: 03: import java.io.IOException; 04: 05: public class WMIOException extends WMWorkflowException { 06: private static final long serialVersionUID = -1019791291722421305L; 07: 08: public WMIOException(IOException e) { 09: super (new WMError(WMError.WM_IOERROR), e); 10: } 11: }