Functions | |
template<typename T > | |
const std::string | KEY_NOT_FOUND_WITH_KEY (const T &key, typename enable_if< is_numeric< T > >::type *=0) |
const std::string | KEY_NOT_FOUND_WITH_KEY (const std::string &key) |
template<typename T > | |
const std::string | KEY_NOT_FOUND_WITH_KEY (const T &, typename disable_if< is_numeric< T > >::type *=0) |
Variables | |
const std::string | ALIAS_CONTENT = "aliases can't have any content, *including* tags" |
const std::string | ALIAS_NOT_FOUND = "alias not found after *" |
const std::string | AMBIGUOUS_ANCHOR = "cannot assign the same alias to multiple nodes" |
const std::string | ANCHOR_NOT_FOUND = "anchor not found after &" |
const std::string | BAD_DEREFERENCE = "bad dereference" |
const std::string | BLOCK_ENTRY = "illegal block entry" |
const std::string | CHAR_IN_ALIAS = "illegal character found while scanning alias" |
const std::string | CHAR_IN_ANCHOR = "illegal character found while scanning anchor" |
const std::string | CHAR_IN_BLOCK = "unexpected character in block scalar" |
const std::string | CHAR_IN_SCALAR = "illegal character in scalar" |
const std::string | CHAR_IN_TAG_HANDLE = "illegal character found while scanning tag handle" |
const std::string | DOC_IN_SCALAR = "illegal document indicator in scalar" |
const std::string | END_OF_MAP = "end of map not found" |
const std::string | END_OF_MAP_FLOW = "end of map flow not found" |
const std::string | END_OF_SEQ = "end of sequence not found" |
const std::string | END_OF_SEQ_FLOW = "end of sequence flow not found" |
const std::string | END_OF_VERBATIM_TAG = "end of verbatim tag not found" |
const std::string | EOF_IN_SCALAR = "illegal EOF in scalar" |
const std::string | EXPECTED_KEY_TOKEN = "expected key token" |
const std::string | EXPECTED_VALUE_TOKEN = "expected value token" |
const std::string | FLOW_END = "illegal flow end" |
const std::string | INVALID_ALIAS = "invalid alias" |
const std::string | INVALID_ANCHOR = "invalid anchor" |
const std::string | INVALID_ESCAPE = "unknown escape character: " |
const std::string | INVALID_HEX = "bad character found while scanning hex number" |
const std::string | INVALID_SCALAR = "invalid scalar" |
const std::string | INVALID_TAG = "invalid tag" |
const std::string | INVALID_UNICODE = "invalid unicode: " |
const std::string | KEY_NOT_FOUND = "key not found" |
const std::string | MAP_KEY = "illegal map key" |
const std::string | MAP_VALUE = "illegal map value" |
const std::string | MULTIPLE_ALIASES = "cannot assign multiple aliases to the same node" |
const std::string | MULTIPLE_ANCHORS = "cannot assign multiple anchors to the same node" |
const std::string | MULTIPLE_TAGS = "cannot assign multiple tags to the same node" |
const std::string | REPEATED_TAG_DIRECTIVE = "repeated TAG directive" |
const std::string | REPEATED_YAML_DIRECTIVE = "repeated YAML directive" |
const std::string | SINGLE_QUOTED_CHAR = "invalid character in single-quoted string" |
const std::string | TAB_IN_INDENTATION = "illegal tab when looking for indentation" |
const std::string | TAG_DIRECTIVE_ARGS = "TAG directives must have exactly two arguments" |
const std::string | TAG_WITH_NO_SUFFIX = "tag handle with no suffix" |
const std::string | UNEXPECTED_END_MAP = "unexpected end map token" |
const std::string | UNEXPECTED_END_SEQ = "unexpected end sequence token" |
const std::string | UNEXPECTED_KEY_TOKEN = "unexpected key token" |
const std::string | UNEXPECTED_VALUE_TOKEN = "unexpected value token" |
const std::string | UNKNOWN_ANCHOR = "the referenced anchor is not defined" |
const std::string | UNKNOWN_TOKEN = "unknown token" |
const std::string | UNMATCHED_GROUP_TAG = "unmatched group tag" |
const std::string | YAML_DIRECTIVE_ARGS = "YAML directives must have exactly one argument" |
const std::string | YAML_MAJOR_VERSION = "YAML major version too large" |
const std::string | YAML_VERSION = "bad YAML version: " |
const std::string | ZERO_INDENT_IN_BLOCK = "cannot set zero indentation for a block scalar" |
const std::string YAML::ErrorMsg::KEY_NOT_FOUND_WITH_KEY | ( | const T & | key, | |
typename enable_if< is_numeric< T > >::type * | = 0 | |||
) | [inline] |
Definition at line 73 of file exceptions.h.
const std::string YAML::ErrorMsg::KEY_NOT_FOUND_WITH_KEY | ( | const std::string & | key | ) | [inline] |
Definition at line 68 of file exceptions.h.
const std::string YAML::ErrorMsg::KEY_NOT_FOUND_WITH_KEY | ( | const T & | , | |
typename disable_if< is_numeric< T > >::type * | = 0 | |||
) | [inline] |
Definition at line 64 of file exceptions.h.
const std::string YAML::ErrorMsg::ALIAS_CONTENT = "aliases can't have any content, *including* tags" |
Definition at line 25 of file exceptions.h.
const std::string YAML::ErrorMsg::ALIAS_NOT_FOUND = "alias not found after *" |
Definition at line 38 of file exceptions.h.
const std::string YAML::ErrorMsg::AMBIGUOUS_ANCHOR = "cannot assign the same alias to multiple nodes" |
Definition at line 44 of file exceptions.h.
const std::string YAML::ErrorMsg::ANCHOR_NOT_FOUND = "anchor not found after &" |
Definition at line 39 of file exceptions.h.
const std::string YAML::ErrorMsg::BAD_DEREFERENCE = "bad dereference" |
Definition at line 49 of file exceptions.h.
const std::string YAML::ErrorMsg::BLOCK_ENTRY = "illegal block entry" |
Definition at line 35 of file exceptions.h.
const std::string YAML::ErrorMsg::CHAR_IN_ALIAS = "illegal character found while scanning alias" |
Definition at line 40 of file exceptions.h.
const std::string YAML::ErrorMsg::CHAR_IN_ANCHOR = "illegal character found while scanning anchor" |
Definition at line 41 of file exceptions.h.
const std::string YAML::ErrorMsg::CHAR_IN_BLOCK = "unexpected character in block scalar" |
Definition at line 43 of file exceptions.h.
const std::string YAML::ErrorMsg::CHAR_IN_SCALAR = "illegal character in scalar" |
Definition at line 32 of file exceptions.h.
const std::string YAML::ErrorMsg::CHAR_IN_TAG_HANDLE = "illegal character found while scanning tag handle" |
Definition at line 15 of file exceptions.h.
const std::string YAML::ErrorMsg::DOC_IN_SCALAR = "illegal document indicator in scalar" |
Definition at line 30 of file exceptions.h.
const std::string YAML::ErrorMsg::END_OF_MAP = "end of map not found" |
Definition at line 18 of file exceptions.h.
const std::string YAML::ErrorMsg::END_OF_MAP_FLOW = "end of map flow not found" |
Definition at line 19 of file exceptions.h.
const std::string YAML::ErrorMsg::END_OF_SEQ = "end of sequence not found" |
Definition at line 20 of file exceptions.h.
const std::string YAML::ErrorMsg::END_OF_SEQ_FLOW = "end of sequence flow not found" |
Definition at line 21 of file exceptions.h.
const std::string YAML::ErrorMsg::END_OF_VERBATIM_TAG = "end of verbatim tag not found" |
Definition at line 17 of file exceptions.h.
const std::string YAML::ErrorMsg::EOF_IN_SCALAR = "illegal EOF in scalar" |
Definition at line 31 of file exceptions.h.
const std::string YAML::ErrorMsg::EXPECTED_KEY_TOKEN = "expected key token" |
Definition at line 58 of file exceptions.h.
const std::string YAML::ErrorMsg::EXPECTED_VALUE_TOKEN = "expected value token" |
Definition at line 59 of file exceptions.h.
const std::string YAML::ErrorMsg::FLOW_END = "illegal flow end" |
Definition at line 34 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_ALIAS = "invalid alias" |
Definition at line 56 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_ANCHOR = "invalid anchor" |
Definition at line 55 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_ESCAPE = "unknown escape character: " |
Definition at line 28 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_HEX = "bad character found while scanning hex number" |
Definition at line 26 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_SCALAR = "invalid scalar" |
Definition at line 47 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_TAG = "invalid tag" |
Definition at line 57 of file exceptions.h.
const std::string YAML::ErrorMsg::INVALID_UNICODE = "invalid unicode: " |
Definition at line 27 of file exceptions.h.
const std::string YAML::ErrorMsg::KEY_NOT_FOUND = "key not found" |
Definition at line 48 of file exceptions.h.
const std::string YAML::ErrorMsg::MAP_KEY = "illegal map key" |
Definition at line 36 of file exceptions.h.
const std::string YAML::ErrorMsg::MAP_VALUE = "illegal map value" |
Definition at line 37 of file exceptions.h.
const std::string YAML::ErrorMsg::MULTIPLE_ALIASES = "cannot assign multiple aliases to the same node" |
Definition at line 24 of file exceptions.h.
const std::string YAML::ErrorMsg::MULTIPLE_ANCHORS = "cannot assign multiple anchors to the same node" |
Definition at line 23 of file exceptions.h.
const std::string YAML::ErrorMsg::MULTIPLE_TAGS = "cannot assign multiple tags to the same node" |
Definition at line 22 of file exceptions.h.
const std::string YAML::ErrorMsg::REPEATED_TAG_DIRECTIVE = "repeated TAG directive" |
Definition at line 14 of file exceptions.h.
const std::string YAML::ErrorMsg::REPEATED_YAML_DIRECTIVE = "repeated YAML directive" |
Definition at line 12 of file exceptions.h.
const std::string YAML::ErrorMsg::SINGLE_QUOTED_CHAR = "invalid character in single-quoted string" |
Definition at line 54 of file exceptions.h.
const std::string YAML::ErrorMsg::TAB_IN_INDENTATION = "illegal tab when looking for indentation" |
Definition at line 33 of file exceptions.h.
const std::string YAML::ErrorMsg::TAG_DIRECTIVE_ARGS = "TAG directives must have exactly two arguments" |
Definition at line 13 of file exceptions.h.
const std::string YAML::ErrorMsg::TAG_WITH_NO_SUFFIX = "tag handle with no suffix" |
Definition at line 16 of file exceptions.h.
const std::string YAML::ErrorMsg::UNEXPECTED_END_MAP = "unexpected end map token" |
Definition at line 53 of file exceptions.h.
const std::string YAML::ErrorMsg::UNEXPECTED_END_SEQ = "unexpected end sequence token" |
Definition at line 52 of file exceptions.h.
const std::string YAML::ErrorMsg::UNEXPECTED_KEY_TOKEN = "unexpected key token" |
Definition at line 60 of file exceptions.h.
const std::string YAML::ErrorMsg::UNEXPECTED_VALUE_TOKEN = "unexpected value token" |
Definition at line 61 of file exceptions.h.
const std::string YAML::ErrorMsg::UNKNOWN_ANCHOR = "the referenced anchor is not defined" |
Definition at line 45 of file exceptions.h.
const std::string YAML::ErrorMsg::UNKNOWN_TOKEN = "unknown token" |
Definition at line 29 of file exceptions.h.
const std::string YAML::ErrorMsg::UNMATCHED_GROUP_TAG = "unmatched group tag" |
Definition at line 51 of file exceptions.h.
const std::string YAML::ErrorMsg::YAML_DIRECTIVE_ARGS = "YAML directives must have exactly one argument" |
Definition at line 9 of file exceptions.h.
const std::string YAML::ErrorMsg::YAML_MAJOR_VERSION = "YAML major version too large" |
Definition at line 11 of file exceptions.h.
const std::string YAML::ErrorMsg::YAML_VERSION = "bad YAML version: " |
Definition at line 10 of file exceptions.h.
const std::string YAML::ErrorMsg::ZERO_INDENT_IN_BLOCK = "cannot set zero indentation for a block scalar" |
Definition at line 42 of file exceptions.h.