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.exception; 5 6 7 /** 8 * The base class for all Terracotta errors. 9 */ 10 public class TCError extends Error { 11 12 public TCError() { 13 super(); 14 } 15 16 public TCError(String message) { 17 super(message); 18 } 19 20 public TCError(Throwable cause) { 21 super(cause); 22 } 23 24 public TCError(String message, Throwable cause) { 25 super(message, cause); 26 } 27 28 }