UserSettingError.withDetails constructor

UserSettingError.withDetails(
  1. AutodiscoverErrorCode errorCode,
  2. String errorMessage,
  3. String settingName
)
Initializes a new instance of the The error code. The error message. Name of the setting.

Implementation

UserSettingError.withDetails(AutodiscoverErrorCode errorCode,
    String errorMessage, String settingName) {
  this.ErrorCode = errorCode;
  this.ErrorMessage = errorMessage;
  this.SettingName = settingName;
}