InternalFailure constructor

InternalFailure(
  1. Object exception,
  2. StackTrace stacktrace
)

Implementation

InternalFailure(Object exception, StackTrace stacktrace)
    : super(
          code: 'internal-failure',
          message: 'An internal error has occurred, please try again. If the problem persists, contact your system administrator',
          exception: exception,
          stacktrace: stacktrace);