Back to project page sony-camera-remote-java.
The source code is released under:
Apache License
If you think the Android project sony-camera-remote-java 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.praetoriandroid.cameraremote; /* w w w .j av a 2 s . c o m*/ public class RpcException extends Exception { private static final long serialVersionUID = 4502326939007154793L; public RpcException() { } public RpcException(String message) { super(message); } public RpcException(String message, Throwable cause) { super(message, cause); } public RpcException(Throwable cause) { super(cause); } }