stdex
Additional custom or not Standard C++ covered algorithms
Loading...
Searching...
No Matches
include
stdex
exception.h
1
/*
2
SPDX-License-Identifier: MIT
3
Copyright © 2023 Amebis
4
*/
5
6
#pragma once
7
8
#include "sal.h"
9
#include <exception>
10
11
namespace
stdex
12
{
16
class
user_cancelled
:
public
std::exception
17
{
18
public
:
24
user_cancelled
(_In_opt_z_
const
char
*msg =
nullptr
) : exception(msg)
25
{
26
}
27
};
28
}
stdex::user_cancelled
User cancelled exception.
Definition:
exception.h:17
stdex::user_cancelled::user_cancelled
user_cancelled(const char *msg=nullptr)
Constructs an exception.
Definition:
exception.h:24
Generated on Wed Mar 8 2023 12:34:32 for stdex by
1.9.6