SA_Logger
Sapphire's Suite's C++ Logger.
Loading...
Searching...
No Matches
Exception_NotEquals.hpp
Go to the documentation of this file.
1// Copyright (c) 2023 Sapphire's Suite. All Rights Reserved.
2
3#pragma once
4
5#ifndef SAPPHIRE_LOGGER_EXCEPTION_NOT_EQUALS_GUARD
6#define SAPPHIRE_LOGGER_EXCEPTION_NOT_EQUALS_GUARD
7
9
20namespace SA
21{
24 {
25 public:
32 };
33
34
36
38 #define __SA_CREATE_EXCEPTION_NotEquals(_baseInfo, _lhs, _rhs) SA::Exception_NotEquals(\
39 __SA_CREATE_EXCEPTION_Equals(_baseInfo, _lhs, _rhs)\
40 )
41
43}
44
53#endif // GUARD
Equals Exception base type implementation.
Equals exception base type.
Definition Exception_Equals.hpp:24
Not Equals exception base type.
Definition Exception_NotEquals.hpp:24
Exception_NotEquals(Exception_Equals &&_exc) noexcept
Default (base) Exception type.
Definition Exception.hpp:24