Initial commit

Add .gitignore to exclude VSCode workspace files and build artifacts
This commit is contained in:
pmb
2025-06-24 15:28:09 -07:00
committed by pmb
parent 6291e7a501
commit f71f1c9b11
7 changed files with 415 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#pragma once
#include <string>
#include <exception>
#include <stdexcept>
class InvalidInput : public std::runtime_error
{
public:
InvalidInput(const std::string& what = "") : std::runtime_error(what) {}
};
std::string process(const std::string &username);