Back to project page Operation-Valkyrie.
The source code is released under:
Terms and conditions Preamble: This Agreement, signed on Jun 10, 2012 [hereinafter: Effective Date] governs the relationship between the Enduser, a private person, (hereinafter: Licensee) and Paul N...
If you think the Android project Operation-Valkyrie 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.opencv.core; // w ww. j a v a 2s . c o m public class CvException extends RuntimeException { private static final long serialVersionUID = 1L; public CvException(String msg) { super(msg); } @Override public String toString() { return "CvException [" + super.toString() + "]"; } }