Navigation
API > API/Plugins > API/Plugins/FileSandboxCore
| |
|
| Name |
UE::FileSandboxCore::ENewSandboxErrorReason |
| Type |
enum |
| Header File |
/Engine/Plugins/Developer/Sandbox/FileSandbox/Source/FileSandboxCore/Public/Types/Manager/NewSandboxError.h |
| Include Path |
#include "Types/Manager/NewSandboxError.h" |
Syntax
namespace UE
{
namespace FileSandboxCore
{
enum ENewSandboxErrorReason
{
UnsuitablePath,
IOError,
CannotLeaveSandbox,
Unspecified,
Count,
}
}
}
Values
| Name |
Remarks |
| UnsuitablePath |
The specified directory cannot be used as root directory. |
| IOError |
Some generic IO error occured (e.g. could not write manifest file, etc.) |
| CannotLeaveSandbox |
Failed to leave the sandbox. |
| Unspecified |
Dummy error code for initializing to a deterministic value. |
| Count |
ADD NEW MEMBERS ABOVE. Not a real reason. |