Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

18 righe
294 B

  1. #pragma once
  2. #include "types.h"
  3. namespace cppmicrohttpd
  4. {
  5. /* http_exception */
  6. http_exception::http_exception(
  7. uint p_status,
  8. const std::string& p_message)
  9. : cppcore::exception(p_message)
  10. , status (p_status)
  11. { }
  12. }