public static void ThrowOnError(this CompanionProxyError value, string message) { if ((value != CompanionProxyError.Success)) { throw new CompanionProxyException(value, message); } }
/// <summary> /// Initializes a new instance of the <see cref="CompanionProxyException"/> class with a specified error code and error message. /// </summary> /// <param name="error"> /// The error code of the error that occurred. /// </param> /// <param name="message"> /// A message which describes the error. /// </param> public CompanionProxyException(CompanionProxyError error, string message) : base(string.Format("An CompanionProxy error occurred. {1}. The error code was {0}", error, message)) { this.errorCode = error; }
public static bool IsError(this CompanionProxyError value) { return(value != CompanionProxyError.Success); }