MEASUR-Tools-Suite v1.0.11
The MEASUR Tools Suite is a collection of industrial efficiency calculations written in C++ and with bindings for compilation to WebAssembly.
Loading...
Searching...
No Matches
UnableToBalanceException.h
1#pragma once
2
3#include <exception>
4#include <iostream>
5#include <string>
6
7class UnableToBalanceException : public std::exception {
8 public:
9 explicit UnableToBalanceException(const std::string& message);
10
11 friend std::ostream& operator<<(std::ostream& stream, const UnableToBalanceException& e);
12
13 const std::string& getMessage() const;
14
15 private:
16 std::string message;
17};
18