1 26 27 package it.stefanochizzolini.clown.util; 28 29 36 public class NotImplementedException 37 extends UnsupportedOperationException  38 { 39 public NotImplementedException( 43 ) 44 {this(null,null);} 45 46 public NotImplementedException( 47 String message 48 ) 49 {this(message,null);} 50 51 public NotImplementedException( 52 String message, 53 Throwable cause 54 ) 55 { 56 super( 57 message == null ? 58 "There's work for you! You reached a code block that hasn't been implemented yet." 59 : message, 60 cause 61 ); 62 } 63 } | Popular Tags |