Back to project page android-opencv-template.
The source code is released under:
MIT License
If you think the Android project android-opencv-template 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; //from w ww .j av 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() + "]"; } }