Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

21 line
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. }