Exceptions.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using GCHR.Model.Konto;
  6. namespace GCHR.Model.Uebersetzung
  7. {
  8. class KontoNichtZugeordnetException : NullReferenceException
  9. {
  10. public KontoNichtZugeordnetException(HaendlerKonto haendlerKonto)
  11. : base(haendlerKonto.DebugInfo())
  12. {
  13. }
  14. public KontoNichtZugeordnetException(string haendlerKontonummer)
  15. : base(haendlerKontonummer)
  16. {
  17. }
  18. }
  19. class HerstellerkontoNichtVorhandenException : NullReferenceException
  20. {
  21. public HerstellerkontoNichtVorhandenException(HaendlerKonto haendlerKonto, string herstellerKontonummer)
  22. : base(haendlerKonto.DebugInfo() + " => " + herstellerKontonummer)
  23. {
  24. }
  25. public HerstellerkontoNichtVorhandenException(string herstellerKontonummer)
  26. : base(herstellerKontonummer)
  27. {
  28. }
  29. }
  30. class UebersetzungNichtVorhandenException : NullReferenceException
  31. {
  32. public UebersetzungNichtVorhandenException(HaendlerKonto haendlerKonto)
  33. : base(haendlerKonto.DebugInfo())
  34. {
  35. }
  36. public UebersetzungNichtVorhandenException(string haendlerKontonummer)
  37. : base(haendlerKontonummer)
  38. {
  39. }
  40. }
  41. class HerstellerkontoTypArgumentException : ArgumentException
  42. {
  43. public HerstellerkontoTypArgumentException(HaendlerKonto haendlerKonto, string herstellerKontonummer)
  44. : base(haendlerKonto.DebugInfo() + " => " + herstellerKontonummer)
  45. {
  46. }
  47. public HerstellerkontoTypArgumentException(string herstellerKontonummer)
  48. : base(herstellerKontonummer)
  49. {
  50. }
  51. }
  52. }