Fix throw new (#2360)

Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
This commit is contained in:
Anton Kolesnyk 2021-05-28 08:52:39 +00:00 committed by GitHub
parent cb862f56b5
commit 78703658a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -52,7 +52,7 @@ namespace Azure { namespace Security { namespace KeyVault { namespace _internal
base64url.append("=");
break;
default:
throw new std::invalid_argument("Unexpected Base64URL encoding in the HTTP response.");
throw std::invalid_argument("Unexpected Base64URL encoding in the HTTP response.");
}
return Azure::Core::Convert::Base64Decode(base64url);
}