|
|
@ -5,7 +5,6 @@ namespace CoreLibrary.Exceptions
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Exception levée lorsqu'un jeton est ajouté à un code déjà complet.
|
|
|
|
/// Exception levée lorsqu'un jeton est ajouté à un code déjà complet.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
[Serializable]
|
|
|
|
|
|
|
|
public class CodeCompletException : Exception
|
|
|
|
public class CodeCompletException : Exception
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// Message par défaut
|
|
|
|
// Message par défaut
|
|
|
@ -28,14 +27,5 @@ namespace CoreLibrary.Exceptions
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
public CodeCompletException(string message, Exception exception) : base(message, exception)
|
|
|
|
public CodeCompletException(string message, Exception exception) : base(message, exception)
|
|
|
|
{}
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
[Obsolete("This method is obsolete. Use alternative methods for data retrieval.", DiagnosticId = "SYSLIB0051")]
|
|
|
|
|
|
|
|
protected CodeCompletException(SerializationInfo info, StreamingContext contexte) : base(info, contexte) { }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Obsolete("This method is obsolete. Use alternative methods for data retrieval.", DiagnosticId = "SYSLIB0051")]
|
|
|
|
|
|
|
|
public override void GetObjectData(SerializationInfo info, StreamingContext context)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
base.GetObjectData(info, context);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|