|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.ComponentModel;
using System.Runtime.Serialization;
using System.Text;
namespace System.DirectoryServices.Protocols
{
[Serializable]
[System.Runtime.CompilerServices.TypeForwardedFrom("System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public class DirectoryException : Exception
{
#if NET
[Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
[EditorBrowsable(EditorBrowsableState.Never)]
#endif
protected DirectoryException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public DirectoryException(string message, Exception inner) : base(message, inner)
{
}
public DirectoryException(string message) : base(message)
{
}
public DirectoryException() : base()
{
}
}
[Serializable]
[System.Runtime.CompilerServices.TypeForwardedFrom("System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public class DirectoryOperationException : DirectoryException, ISerializable
{
#if NET
[Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
[EditorBrowsable(EditorBrowsableState.Never)]
#endif
protected DirectoryOperationException(SerializationInfo info, StreamingContext context) : base(info, context) { }
public DirectoryOperationException() : base(SR.DefaultOperationsError) { }
public DirectoryOperationException(string message) : base(message ?? SR.DefaultOperationsError) { }
public DirectoryOperationException(string message, Exception inner) : base(message ?? SR.DefaultOperationsError, inner) { }
public DirectoryOperationException(DirectoryResponse response) :
base(CreateMessage(response, message: null))
{
Response = response;
}
public DirectoryOperationException(DirectoryResponse response, string message)
: base(CreateMessage(response, message))
{
Response = response;
}
public DirectoryOperationException(DirectoryResponse response, string message, Exception inner)
: base(CreateMessage(response, message), inner)
{
Response = response;
}
public DirectoryResponse Response { get; internal set; }
private static string CreateMessage(DirectoryResponse response, string? message)
{
string result = message ?? SR.DefaultOperationsError;
if (!string.IsNullOrEmpty(response?.ErrorMessage))
{
result += " " + response.ErrorMessage;
}
return result;
}
}
[Serializable]
[System.Runtime.CompilerServices.TypeForwardedFrom("System.DirectoryServices.Protocols, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public class BerConversionException : DirectoryException
{
#if NET
[Obsolete(Obsoletions.LegacyFormatterImplMessage, DiagnosticId = Obsoletions.LegacyFormatterImplDiagId, UrlFormat = Obsoletions.SharedUrlFormat)]
[EditorBrowsable(EditorBrowsableState.Never)]
#endif
protected BerConversionException(SerializationInfo info, StreamingContext context) : base(info, context) { }
public BerConversionException() : base(SR.BerConversionError)
{
}
public BerConversionException(string message) : base(message ?? SR.BerConversionError)
{
}
public BerConversionException(string message, Exception inner) : base(message ?? SR.BerConversionError, inner)
{
}
}
}
|