Skip to content
Snippets Groups Projects
Commit 34ee26f9 authored by Giovanni La Mura's avatar Giovanni La Mura
Browse files

Add doc-strings for List exception members

parent fba1b7c5
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,12 @@
*/
class ListOutOfBoundsException: public std::exception {
protected:
int min_index, max_index, requested_index;
//! \brief Minimum index defined in the list.
int min_index;
//! \brief Maximum index defined in the list.
int max_index;
//! \brief Index requested by user.
int requested_index;
public:
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment