Arkulib
DigitsTooLargeException.hpp
Go to the documentation of this file.
1
9#pragma once
10
11#include <stdexcept>
12
17 class DigitsTooLargeException : public std::overflow_error {
18 public:
19 inline DigitsTooLargeException() : std::overflow_error(
20 "The given precision seems to large to be wanted. You should reduce it.") {}
21 };
22}
An exception to handle too large precision.