Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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