WrappedException constructor

WrappedException(
  1. String message,
  2. Object? innerError, [
  3. StackTrace? innerTrace
])

Implementation

WrappedException(super.message, this.innerError, [StackTrace? innerTrace])
    : innerChain = innerTrace == null ? null : Chain.forTrace(innerTrace);