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