01: /*
02: * Created on 13.06.2006
03: *
04: * To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package de.schlund.pfixcore.webservice;
08:
09: public class ServiceProcessingException extends ServiceException {
10:
11: public ServiceProcessingException(String msg) {
12: super (msg);
13: }
14:
15: public ServiceProcessingException(String msg, Throwable cause) {
16: super(msg, cause);
17: }
18:
19: }
|