Changed directory name

This commit is contained in:
2020-09-05 12:21:53 -04:00
parent 000d6da85f
commit 42f225b5f2
37 changed files with 0 additions and 0 deletions

27
headers/Unsolved.hpp Normal file
View File

@@ -0,0 +1,27 @@
//ProjectEuler/ProjectEulerCPP/headers/Unsolved.hpp
//Matthew Ellison
// Created: 08-28-20
//Modified: 08-28-20
//An exception class thrown if you try to access something before it has been solved
#ifndef UNSOLVED_HPP
#define UNSOLVED_HPP
#include <string>
class Unsolved{
private:
std::string message;
public:
Unsolved(){}
Unsolved(std::string message) : message(message){}
std::string getMessage(){
return message;
}
};
#endif //UNSOLVED_HPP