1 4 package com.tc.exception; 5 6 9 public class ImplementMe extends TCRuntimeException { 10 11 private static final String PRETTY_TEXT = "You've attempted to use an unsupported feature in this Terracotta product. Please consult " 12 + "the product documentation, or email support@terracottatech.com for assistance."; 13 14 public ImplementMe() { 15 this(PRETTY_TEXT); 16 } 17 18 public ImplementMe(String message) { 19 super(message); 20 } 21 22 public ImplementMe(Throwable cause) { 23 super(PRETTY_TEXT, cause); 24 } 25 26 public ImplementMe(String message, Throwable cause) { 27 super(message, cause); 28 } 29 30 } | Popular Tags |