Back to project page SleepGuard.
The source code is released under:
GNU General Public License
If you think the Android project SleepGuard 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 com.szabolcs.szijarto.sleepguard; // w w w . j ava 2 s . co m @SuppressWarnings("serial") public class GenericWatcherException extends Exception { public GenericWatcherException() { super(); } public GenericWatcherException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } public GenericWatcherException(String detailMessage) { super(detailMessage); } public GenericWatcherException(Throwable throwable) { super(throwable); } }