Update exception message to use operationId

Update ApiException to use {{operationId}} variable to correct typo
This commit is contained in:
ravinikam 2017-03-10 12:41:15 -06:00 committed by GitHub
parent 3ff4c988b8
commit a29c8c937a

View File

@ -344,7 +344,7 @@ pplx::task<{{#returnType}}{{{returnType}}}{{/returnType}}{{^returnType}}void{{/r
else else
{ {
throw ApiException(500 throw ApiException(500
, U("error calling findPetsByStatus: unsupported response type")); , U("error calling {{operationId}}: unsupported response type"));
} }
return result; return result;