Back to project page radioExpresWidget.
The source code is released under:
GNU General Public License
If you think the Android project radioExpresWidget 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.hustaty.radioexpres.widget.exception; /*from w w w .j a va 2s.c o m*/ /** * User: hustasl * Date: 2/22/13 * Time: 1:18 PM */ public class RadioExpresException extends Exception { private static final long serialVersionUID = 1L; public RadioExpresException() { super(); } public RadioExpresException(String message) { super(message); } public RadioExpresException(Throwable cause) { super(cause); } public RadioExpresException(String message, Throwable cause) { super(message, cause); } }