Back to project page android_opengles.
The source code is released under:
MIT License
If you think the Android project android_opengles 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; /*from w w w . j a v a2s. c o 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 ); } }