01: package net.xoetrope.optional.service;
02:
03: /**
04: * <p>Title: XLib</p>
05: * <p>Description: </p>
06: * <p>Copyright (c) Xoetrope Ltd. 2001-2003</p>
07: * $Revision: 1.1 $
08: */
09: public class ServiceProxyException extends Exception {
10:
11: public ServiceProxyException(String message) {
12: super(message);
13: }
14:
15: }
|