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.bytes;
05:
06: import com.tc.exception.TCRuntimeException;
07:
08: /**
09: * @author teck TODO: document me!
10: */
11: public class TCBufferUnderflowException extends TCRuntimeException {
12:
13: public TCBufferUnderflowException() {
14: super ();
15: }
16:
17: public TCBufferUnderflowException(Throwable cause) {
18: super(cause);
19: }
20:
21: }
|