20 #ifndef __CXXGRAPH_CONSTSTRING_H__
21 #define __CXXGRAPH_CONSTSTRING_H__
28 constexpr
char ERR_NO_DIR_OR_UNDIR_EDGE[] =
"Edge are neither Directed neither Undirected";
29 constexpr
char ERR_DIR_GRAPH[] =
"Graph is directed";
30 constexpr
char ERR_NO_WEIGHTED_EDGE[] =
"Edge are not Weighted";
31 constexpr
char ERR_NEGATIVE_WEIGHTED_EDGE[] =
"Edge negative Weighted";
32 constexpr
char ERR_TARGET_NODE_NOT_REACHABLE[] =
"Target Node not Reachable";
33 constexpr
char ERR_TARGET_NODE_NOT_IN_GRAPH[] =
"Target Node not inside Graph";
34 constexpr
char ERR_SOURCE_NODE_NOT_IN_GRAPH[] =
"Source Node not inside Graph";
35 constexpr
char ERR_NOT_STRONG_CONNECTED[] =
"Graph is not strongly connected";