#region --------------- Copyright Dresser Wayne Pignone -------------
/*
* $Log: /Wrk/Support/ForecourtControl/Wrk/ForecourtControl/Exceptions/FuelGradeOutOfRangeException.cs $
*
* 1 07-01-05 9:02 roger.månsson
* Created
*/
#endregion
using System;
namespace Wayne.ForecourtControl
{
///
/// Exception thrown from the AllowedFuelGrades class when trying to access a fuel grade that
/// does not exist.
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")]
public sealed class FuelGradeOutOfRangeException : Exception
{
///
/// Initializes an new instance of the class.
///
public FuelGradeOutOfRangeException() { }
///
/// Initializes an new instance of the class.
///
///
public FuelGradeOutOfRangeException(string message) : base(message) { }
///
/// Initializes an new instance of the class.
///
///
///
public FuelGradeOutOfRangeException(string message, Exception inner) : base(message, inner) { }
}
}