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
include
steamModeler
service
medium_pressure_header
UnableToBalanceException.h
1
#pragma once
2
3
#include <exception>
4
#include <iostream>
5
#include <string>
6
7
class
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
UnableToBalanceException
Definition
UnableToBalanceException.h:7
Generated by
1.9.8