-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathfs_resources_exceptions.cpp
More file actions
37 lines (26 loc) · 993 Bytes
/
fs_resources_exceptions.cpp
File metadata and controls
37 lines (26 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include "fs/resources/fs_resources_exceptions.hpp"
//------------------------------------------------------------------------------
namespace fs::resources::exceptions
{
//------------------------------------------------------------------------------
const char * const ModuleName = "FS";
//------------------------------------------------------------------------------
namespace CantCreateFile
{
const char * const Code = "CREATE_FILE";
const char * const Msg = "Can't create file: ";
}
//------------------------------------------------------------------------------
namespace CantOpenFile
{
const char * const Code = "OPEN_FILE";
const char * const Msg = "Can't open file: ";
}
//------------------------------------------------------------------------------
namespace CheckingExistFileFail
{
const char * const Code = "IS_EXIST_PATH";
const char * const Msg = "Error during checking path: ";
}
//------------------------------------------------------------------------------
}