Guest User

Exceptions.h

a guest
May 16th, 2013
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.23 KB | None | 0 0
  1. #ifndef EXCEPTIONS_H
  2. #define EXCEPTIONS_H
  3.  
  4. enum Exception {
  5.     EDGE_ALREADY_EXISTS,
  6.     EDGE_DOES_NOT_EXIST,   
  7.     NODE_ALREADY_EXISTS,
  8.     NODE_DOES_NOT_EXIST,
  9.     SOURCE_NODE_DOES_NOT_EXIST,
  10.     DESTINATION_NODE_DOES_NOT_EXIST,
  11. };
  12.  
  13. #endif
Advertisement
Add Comment
Please, Sign In to add comment