using System; using System.Collections.Generic; using System.Text; using CSVDownloader.Store; namespace CSVDownloader.Exceptions { class SpotNameNotMatchException : Exception { private List error_list_; public SpotNameNotMatchException(List error_list) { error_list_ = error_list; } public List GetList() { return new List(error_list_); } } }