1 4 package com.tc.util; 5 6 import com.tc.exception.TCRuntimeException; 7 8 public class TCAssertionError extends TCRuntimeException { 9 10 public TCAssertionError() { 11 super(); 12 } 13 14 public TCAssertionError(String message) { 15 super(message); 16 } 17 18 public TCAssertionError(Throwable cause) { 19 super(cause); 20 } 21 22 public TCAssertionError(String message, Throwable cause) { 23 super(message, cause); 24 } 25 26 } | Popular Tags |