mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Interop.VixCOM;
|
|
|
|
namespace Vestris.VMWareLib
|
|
{
|
|
/// <summary>
|
|
/// A VMWare exception. Every VMWare operational failure is translated into
|
|
/// a <see cref="Vestris.VMWareLib.VMWareException" />.
|
|
/// </summary>
|
|
public class VMWareException : Exception
|
|
{
|
|
private ulong _errorCode = 0;
|
|
|
|
/// <summary>
|
|
/// The original VMWare error code.
|
|
/// </summary>
|
|
public ulong ErrorCode
|
|
{
|
|
get
|
|
{
|
|
return _errorCode;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// A VMWare exception with default error text in English-US.
|
|
/// </summary>
|
|
/// <param name="code">VMWare VixCOM.Constants error code.</param>
|
|
public VMWareException(ulong code)
|
|
: this(code, new VixLib().GetErrorText(code, "en-US"))
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// A VMWare exception.
|
|
/// </summary>
|
|
/// <param name="code">VMWare VixCOM.Constants error code.</param>
|
|
/// <param name="message">Error description.</param>
|
|
public VMWareException(ulong code, string message)
|
|
: base(message)
|
|
{
|
|
_errorCode = code;
|
|
}
|
|
}
|
|
}
|