Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

21 řádky
575B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using CSVDownloader.Store;
  5. namespace CSVDownloader.Exceptions {
  6. class SpotNameNotMatchException : Exception {
  7. private List<ParkingCreditCardAgenciesSpotIDError> error_list_;
  8. public SpotNameNotMatchException(List<ParkingCreditCardAgenciesSpotIDError> error_list) {
  9. error_list_ = error_list;
  10. }
  11. public List<ParkingCreditCardAgenciesSpotIDError> GetList() {
  12. return new List<ParkingCreditCardAgenciesSpotIDError>(error_list_);
  13. }
  14. }
  15. }