Back to project page SimplePushDemoApp.
The source code is released under:
GNU General Public License
If you think the Android project SimplePushDemoApp 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 org.java_websocket.exceptions; /* w ww .jav a2s .co m*/ public class NotSendableException extends RuntimeException { /** * Serializable */ private static final long serialVersionUID = -6468967874576651628L; public NotSendableException() { } public NotSendableException( String message ) { super( message ); } public NotSendableException( Throwable cause ) { super( cause ); } public NotSendableException( String message , Throwable cause ) { super( message, cause ); } }