Back to project page TrackEveryPenny.
The source code is released under:
Apache License
If you think the Android project TrackEveryPenny listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ca.jbrains.toolkit; //from w w w . j av a 2s .c o m public class ProgrammerMistake extends RuntimeException { public ProgrammerMistake(String detailMessage) { super( "A programmer made a mistake, " + "allowing this to happen: " + detailMessage); } public ProgrammerMistake( String detailMessage, Throwable throwable ) { super( "A programmer made a mistake, " + "allowing this to happen: " + detailMessage, throwable); } public ProgrammerMistake(Throwable throwable) { super(throwable); } }