CvException constructor

CvException(
  1. int code, {
  2. String msg = "",
  3. String err = "",
  4. String file = "",
  5. String func = "",
  6. int line = -1,
})

Implementation

CvException(int code, {this.msg = "", this.err = "", this.file = "", this.func = "", this.line = -1})
  : code = ErrorCode(code);