using System; using System.Collections.Generic; using System.Text; namespace Intel.Management.Wsman { /// /// An exception that is thrown when the Wsman request is unauthorized /// public class WsmanUnauthorizedException : WsmanConnectionException { /// /// Initializes a new instance of the WsmanUnauthorizedException class with a message string /// /// The error message string public WsmanUnauthorizedException(string message) : base(message) { } /// /// Initializes a new instance of the WsmanUnauthorizedException class with a message string a inner exception /// /// The error message string /// The inner exception reference public WsmanUnauthorizedException(string message, Exception inner) : base(message, inner) { } } }