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; //from ww w .j ava2 s . 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; } }