Melon
A C++ library designed for RadishOS.
Loading...
Searching...
No Matches
NullStream.hpp
1#pragma once
2
3#include <exception>
4
5namespace Melon::Exceptions
6{
8 class NullStream : public std::exception
9 {
10 public:
12 NullStream();
13
15 const char *what() const noexcept;
16 };
17} // namespace Melon::Exceptions
const char * what() const noexcept
Definition NullStream.cpp:8
NullStream()
Main constructor for class NullStream.
Definition NullStream.cpp:5
Contains custom exceptions.
Definition Exceptions.hpp:8