Navigation
API > API/Plugins > API/Plugins/FileSandboxCore
| |
|
| Name |
UE::FileSandboxCore::ELoadSandboxLoadErrorReason |
| Type |
enum |
| Header File |
/Engine/Plugins/Developer/Sandbox/FileSandbox/Source/FileSandboxCore/Public/Types/Manager/LoadSandboxError.h |
| Include Path |
#include "Types/Manager/LoadSandboxError.h" |
Syntax
namespace UE
{
namespace FileSandboxCore
{
enum ELoadSandboxLoadErrorReason
{
InvalidDirectory,
InvalidName,
IOError,
CannotLeaveSandbox,
IncompatibleVersion,
Unspecified,
Count,
}
}
}
Values
| Name |
Remarks |
| InvalidDirectory |
The directory does not contain any sandbox |
| InvalidName |
The name does not map to any directory. |
| IOError |
Some generic IO error occured (e.g. could not write manifest file, etc.) |
| CannotLeaveSandbox |
Failed to leave the sandbox. |
| IncompatibleVersion |
The sandbox was created with a newer version of Unreal Engine and cannot be loaded. |
| Unspecified |
Dummy error code for initializing to a deterministic value. |
| Count |
ADD NEW MEMBERS ABOVE. Not a real reason. |