共用方式為


http_exception::http_exception 建構函式

建立只有字串訊息但沒有錯誤碼的 http_exception

http_exception(
   const utility::string_t &whatArg
);

http_exception(
   int errorCode
);

http_exception(
   int errorCode,
   const utility::string_t &whatArg
);

http_exception(
   int errorCode,
   const std::error_category &cat
);

參數

  • whatArg
    要在 what() 字串中使用的訊息。

  • errorCode
    錯誤碼值。

  • cat
    程式碼的錯誤分類。

需求

**標頭:**http_msg.h

**命名空間:**web::http

請參閱

參考

http_exception 類別