mergedWith method

  1. @override
UserException mergedWith(
  1. UserException? anotherUserException
)
override

Returns a new UserException, by merging the current one with the given anotherUserException. This simply means the given anotherUserException will be used as part of the reason of the current one.

Note: If any of the exceptions has ifOpenDialog set to false, the result will also have ifOpenDialog set to false.

Implementation

@override
UserException mergedWith(UserException? anotherUserException) {
  throw UnsupportedError('You cannot use this.');
}