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