Data Structures Class Templates
Various data structures implemented using c++ class templates.
stackoverflowerror.h
Go to the documentation of this file.
1 #pragma once
2 
13 public:
18  StackOverflowError(const char* msg="StackOverflowError"): StackError(msg) {}
19 };
StackOverflowError
Exception class for Stack overflow runtime error.
Definition: stackoverflowerror.h:12
StackOverflowError::StackOverflowError
StackOverflowError(const char *msg="StackOverflowError")
Constructor.
Definition: stackoverflowerror.h:18
StackError::msg
std::string msg
Definition: stackerror.h:30
StackError
Base class for all Stack related exceptions.
Definition: stackerror.h:14