|
|
|
@ -1,6 +1,7 @@ |
|
|
|
|
using System; |
|
|
|
|
using System.Collections.Generic; |
|
|
|
|
using System.Linq; |
|
|
|
|
using System.Runtime.Serialization; |
|
|
|
|
using System.Threading.Tasks; |
|
|
|
|
|
|
|
|
|
namespace EPAServeur.Exceptions |
|
|
|
@ -10,5 +11,37 @@ namespace EPAServeur.Exceptions |
|
|
|
|
/// </summary> |
|
|
|
|
public class CollaborateurNotFoundException : Exception |
|
|
|
|
{ |
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
public CollaborateurNotFoundException() |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="message"></param> |
|
|
|
|
public CollaborateurNotFoundException(string message) : base(message) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="message"></param> |
|
|
|
|
/// <param name="innerException"></param> |
|
|
|
|
public CollaborateurNotFoundException(string message, Exception innerException) : base(message, innerException) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// <summary> |
|
|
|
|
/// Initialise une nouvelle instance de la classe <see cref="CollaborateurNotFoundException"/> class. |
|
|
|
|
/// </summary> |
|
|
|
|
/// <param name="info"></param> |
|
|
|
|
/// <param name="context"></param> |
|
|
|
|
protected CollaborateurNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context) |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|