|
|
@ -1,4 +1,6 @@
|
|
|
|
namespace CoreLibrary.Exceptions
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace CoreLibrary.Exceptions
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Exception levée lorsqu'une opération est tentée alors que la partie n'a pas encore commencé.
|
|
|
|
/// Exception levée lorsqu'une opération est tentée alors que la partie n'a pas encore commencé.
|
|
|
@ -19,5 +21,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
public PartieNonCommenceeException(string message, Exception exception) : base(message, exception)
|
|
|
|
public PartieNonCommenceeException(string message, Exception exception) : base(message, exception)
|
|
|
|
{ }
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[Obsolete("This method is obsolete. Use alternative methods for data retrieval.", DiagnosticId = "SYSLIB0051")]
|
|
|
|
|
|
|
|
protected PartieNonCommenceeException(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);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|