UnexpectedExceptionTypeException constructor

const UnexpectedExceptionTypeException(
  1. String exceptionType,
  2. String message
)

Creates a UnexpectedExceptionTypeException with the given type and message.

Implementation

const UnexpectedExceptionTypeException(this.exceptionType, String message)
    : super('UnexpectedExceptionTypeException', '$exceptionType: $message');