Files
finger/handler.hpp
T
pmb f71f1c9b11 Initial commit
Add .gitignore to exclude VSCode workspace files and build artifacts
2025-06-24 15:28:09 -07:00

15 lines
264 B
C++

#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);