01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05: package com.sun.portal.rewriter.util;
06:
07: /**
08: * DataServiceException and InvalidXMLException should implement this interface
09: *
10: * @version 1.0 12/15/2001
11: * @author Raja Nagendra Kumar, Nagendra.Raja@sun.com
12: * @see DataServiceException, InvalidXMLException
13: */
14: public interface ModuleException {
15: public Throwable getCause();
16:
17: public int getLocaleID();
18: }//interface ModuleException
|