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