01: /**
02: * $Id: StaleResponseBufferDataException.java,v 1.2 2004/01/21 20:41:44 sathyakn Exp $
03: * Copyright 2003 Sun Microsystems, Inc.
04: * All rights reserved.
05: * Use of this product is subject to license terms.
06: * Federal Acquisitions: Commercial Software -- Government Users
07: * Subject to Standard License Terms and Conditions.
08: *
09: * Sun, Sun Microsystems, the Sun logo, and Sun ONE are trademarks or
10: * registered trademarks of Sun Microsystems, Inc. in the
11: * United States and other countries.
12: */package com.sun.mobile.responsebuffer;
13:
14: /**
15: * Signifies error when accessing invalidated ResponseBufferEntry data
16: */
17: public class StaleResponseBufferDataException extends Exception {
18: public StaleResponseBufferDataException() {
19: // Do nothing for now
20: }
21: }
|