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; public class IllegalResultSizeException extends ValidationException { private static final long serialVersionUID = -2132223180028624107L; public IllegalResultSizeException(int expectedSize, int actualSize) { super("Illegal 'result' size (must be " + expectedSize + "): " + actualSize); } }