PageRenderTime 38ms CodeModel.GetById 17ms RepoModel.GetById 1ms app.codeStats 0ms

/Passbook.Generator/Exceptions/RequiredFieldValueMissingException.cs

https://github.com/Comezon/dotnet-passbook
C# | 14 lines | 13 code | 1 blank | 0 comment | 0 complexity | 81abbdea7596c42b5a2c6090cae2a005 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Passbook.Generator.Exceptions
  7. {
  8. [Serializable]
  9. public class RequiredFieldValueMissingException : Exception
  10. {
  11. public RequiredFieldValueMissingException(string fieldName) : base("Missing key value. Every Field must have a key specified.") { }
  12. }
  13. }