MdmEngineException constructor

MdmEngineException({
  1. String? url,
  2. String? method,
  3. int? statusCode,
  4. Object? error,
  5. StackTrace? stackTrace,
})

Implementation

MdmEngineException({
  this.url,
  this.method,
  this.statusCode,
  this.error,
  this.stackTrace,
});