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.rpc; /*from w w w . j a v a2 s. co m*/ import com.praetoriandroid.cameraremote.RpcException; public class ValidationException extends RpcException { private static final long serialVersionUID = -2592332852759567070L; public ValidationException() { } public ValidationException(String message) { super(message); } public ValidationException(String message, Throwable cause) { super(message, cause); } public ValidationException(Throwable cause) { super(cause); } }