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.object.dna.api;
05:
06: import com.tc.exception.TCRuntimeException;
07:
08: /**
09: * Generic exception thrown when working with DNA. Typically used a replacement for something
10: * like IOException or other non-Terracotta exception
11: */
12: public class DNAException extends TCRuntimeException {
13: public DNAException() {
14: super ();
15: }
16:
17: public DNAException(String msg) {
18: super (msg);
19: }
20:
21: public DNAException(Exception e) {
22: super(e);
23: }
24: }
|