1 /*2 * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.3 */4 package com.tc.object;5 6 /**7 * @author orion8 */9 public class TCObjectException extends Exception {10 TCObjectException() {11 super();12 }13 14 TCObjectException(Exception e) {15 super(e);16 }17 18 TCObjectException(String message) {19 super(message);20 }21 }