overflow_exception.hpp 181 B

1234567891011
  1. #pragma once
  2. #include "../exception.hpp"
  3. namespace nkg::exceptions {
  4. class overflow_exception : public ::nkg::exception {
  5. using ::nkg::exception::exception;
  6. };
  7. }