Microsoft Information Protection (MIP) SDK for C++: Reference
1.15
Doxygen-generated documentation for MIP SDK written in C++
Loading...
Searching...
No Matches
xml_load_exception.h
Go to the documentation of this file.
1
#ifndef API_MIP_DELEGATE_ERRORS_XML_LOAD_EXCEPTION_H_
2
#define API_MIP_DELEGATE_ERRORS_XML_LOAD_EXCEPTION_H_
3
4
#include <exception>
5
#include <stdexcept>
6
#include <string>
7
8
#include "
mip/mip_namespace.h
"
9
10
MIP_NAMESPACE_BEGIN
11
12
namespace
xml
{
13
14
class
XmlLoadException
:
public
std::exception {
15
public
:
16
XmlLoadException
(
const
std::string& message) : mMessage(message.c_str()) {}
17
virtual
char
const
*
what
() const noexcept
override
{
return
mMessage.c_str(); }
18
19
private
:
20
std::string mMessage;
21
};
22
23
}
// xml
24
25
MIP_NAMESPACE_END
26
27
#endif
// API_MIP_DELEGATE_ERRORS_XML_LOAD_EXCEPTION_H_
xml::XmlLoadException
Definition
xml_load_exception.h:14
xml::XmlLoadException::XmlLoadException
XmlLoadException(const std::string &message)
Definition
xml_load_exception.h:16
xml::XmlLoadException::what
virtual char const * what() const noexcept override
Definition
xml_load_exception.h:17
mip_namespace.h
MIP namespace macros.
xml
Definition
xml_load_exception.h:12
src
api
mip
delegate_errors
xml_load_exception.h
Generated by
1.12.0