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; /* w w w . j a va 2s .c o m*/ public class InvalidDataException extends Exception { /** * Serializable */ private static final long serialVersionUID = 3731842424390998726L; private int closecode; public InvalidDataException( int closecode ) { this.closecode = closecode; } public InvalidDataException( int closecode , String s ) { super( s ); this.closecode = closecode; } public InvalidDataException( int closecode , Throwable t ) { super( t ); this.closecode = closecode; } public InvalidDataException( int closecode , String s , Throwable t ) { super( s, t ); this.closecode = closecode; } public int getCloseCode() { return closecode; } }