Class PDSException
Contains information about error encountered on PDS side
Inheritance
System.Object
PDSException
Namespace: AdmPwd.Types
Assembly: AdmPwd.PDSWrapper.dll
Syntax
public class PDSException : Exception
Constructors
PDSException(IssueType, string, string, string, Exception)
Constructor
Declaration
public PDSException(IssueType issueType, string issue, string details, string message, Exception ex)
Parameters
Type | Name | Description |
---|---|---|
IssueType | issueType | Type of issue |
string | issue | Description of issue |
string | details | Detailed information |
string | message | Exception message |
System.Exception | ex | Inner exception |
Fields
AdditionalInformation
Issue specific data. Currently used to return list of AD objects with the same name for ComputerAmbiguous or AccountAmbiguous issues.
In such case, maximum 100 of ambiguous entries is returned in this member.
Declaration
public readonly List<string> AdditionalInformation
Field Value
Type | Description |
---|---|
System.Collections.Generic.List<><string> |
Properties
Details
Detailed information about error
Declaration
public string Details { get; }
Property Value
Type | Description |
---|---|
string |
Issue
Textual description of issue
Declaration
public string Issue { get; }
Property Value
Type | Description |
---|---|
string |
IssueCode
Type of issue
Declaration
public IssueType IssueCode { get; }
Property Value
Type | Description |
---|---|
IssueType |