mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2025-07-04 14:14:09 +00:00
fix complex, rational
This commit is contained in:
parent
cdb10c0fbe
commit
6b3f7ad894
19 changed files with 1568 additions and 1360 deletions
21
sprout/rational/exceptions.hpp
Normal file
21
sprout/rational/exceptions.hpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#ifndef SPROUT_RATIONAL_EXCEPTIONS_HPP
|
||||
#define SPROUT_RATIONAL_EXCEPTIONS_HPP
|
||||
|
||||
#include <stdexcept>
|
||||
#include <sprout/config.hpp>
|
||||
|
||||
namespace sprout {
|
||||
//
|
||||
// bad_rational
|
||||
//
|
||||
class bad_rational
|
||||
: public std::domain_error
|
||||
{
|
||||
public:
|
||||
explicit bad_rational()
|
||||
: std::domain_error("bad rational: zero denominator")
|
||||
{}
|
||||
};
|
||||
} // namespace sprout
|
||||
|
||||
#endif // SPROUT_RATIONAL_EXCEPTIONS_HPP
|
Loading…
Add table
Add a link
Reference in a new issue