My Project
exception.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "../exception.h"
4 
6 {
7 public:
8  virtual const char* what() const
9  {
10  return "Geometric vector size should be 4!";
11  }
12 };
13 
15 {
16 public:
17  virtual const char* what() const
18  {
19  return "Vector size is 4. Index is out out of range!";
20  }
21 };
virtual const char * what() const
Definition: exception.h:17
virtual const char * what() const
Definition: exception.h:8