Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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