You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Digitalisation_EPA_Serveur/EPAServeur/Exceptions/NoteNotFoundException.cs

48 lines
1.3 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading.Tasks;
namespace EPAServeur.Exceptions
{
/// <summary>
/// Exception à jeter quand la note n'a pas été trouvée
/// </summary>
public class NoteNotFoundException : Exception
{
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="NoteNotFoundException"/> class.
/// </summary>
public NoteNotFoundException()
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="NoteNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
public NoteNotFoundException(string message) : base(message)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="NoteNotFoundException"/> class.
/// </summary>
/// <param name="message"></param>
/// <param name="innerException"></param>
public NoteNotFoundException(string message, Exception innerException) : base(message, innerException)
{
}
/// <summary>
/// Initialise une nouvelle instance de la classe <see cref="NoteNotFoundException"/> class.
/// </summary>
/// <param name="info"></param>
/// <param name="context"></param>
protected NoteNotFoundException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
}
}