proxygen
folly::DynamicParserLogicError Struct Reference

#include <DynamicParser.h>

Inheritance diagram for folly::DynamicParserLogicError:

Public Member Functions

template<typename... Args>
 DynamicParserLogicError (Args &&...args)
 

Detailed Description

When DynamicParser is used incorrectly, it will throw this exception instead of reporting an error via releaseErrors(). It is unsafe to call any parser methods after catching a LogicError.

Definition at line 223 of file DynamicParser.h.

Constructor & Destructor Documentation

template<typename... Args>
folly::DynamicParserLogicError::DynamicParserLogicError ( Args &&...  args)
inlineexplicit

Definition at line 225 of file DynamicParser.h.

226  : std::logic_error(folly::to<std::string>(std::forward<Args>(args)...)) {}

The documentation for this struct was generated from the following file: