code smell correction sur les exceptions
continuous-integration/drone/push Build is passing Details

master
Céleste BARBOSA 1 year ago
parent af9acb9ced
commit 14c3127ac6

@ -1,4 +1,6 @@
namespace CoreLibrary.Exceptions
using System.Runtime.Serialization;
namespace CoreLibrary.Exceptions
{
/// <summary>
/// Exception levée lorsqu'un jeton est ajouté à un code déjà complet.
@ -19,5 +21,8 @@
public CodeCompletException(string message, Exception exception) : base(message, exception)
{}
protected CodeCompletException(SerializationInfo info, StreamingContext context) : base(info, context)
{}
}
}

Loading…
Cancel
Save