Back to project page wolPi.
The source code is released under:
Apache License
If you think the Android project wolPi 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 de.matthesrieke.wolpi; /* w w w.j av a 2s . co m*/ /** * generic Wol-related exception * * @author matthes rieke * */ public class WolPiException extends Exception { /** * */ private static final long serialVersionUID = 1L; public WolPiException() { super(); } public WolPiException(String message, Throwable cause) { super(message, cause); } public WolPiException(String message) { super(message); } public WolPiException(Throwable cause) { super(cause); } }