native exception handling added

This commit is contained in:
Andrey Pavlenko
2011-07-11 15:28:09 +00:00
parent d227079753
commit 4033d8324c
2 changed files with 35 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
package org.opencv;
public class CvException extends Exception {
private static final long serialVersionUID = 1L;
public CvException(String msg) {
super(msg);
}
@Override
public String toString() {
return "CvException [" + super.toString() + "]";
}
}