01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.exception;
05:
06: /**
07: * Wraps exception message in some other message
08: */
09: public interface ExceptionWrapper {
10: /**
11: * Wrap message and return new message
12: * @param message Original message
13: * @return New message
14: */
15: public String wrap(String message);
16: }
|