mirror of https://github.com/opencv/opencv.git
parent
d227079753
commit
4033d8324c
2 changed files with 35 additions and 3 deletions
@ -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() + "]"; |
||||
} |
||||
} |
Loading…
Reference in new issue