Files
Ffu2Vhdx/ImageCommon/ErrorCategory.cs
T
2023-08-27 20:48:25 +02:00

14 lines
265 B
C#

namespace Microsoft.WindowsPhone.Imaging
{
public enum ErrorCategory
{
Unknown = -1,
BadCommandLineParams,
IncorrectUserInput,
MissingArtifact,
BadContent,
UnexpectedState,
XmlSerialization
}
}