错误的文件格式
| 15 | /// 错误的文件格式 |
| 16 | /// </summary> |
| 17 | public class InvalidFileFormat : Exception |
| 18 | { |
| 19 | public InvalidFileFormat(int line, string message) |
| 20 | : base(String.Format("行 {0}: {1}", line, message)) {} |
| 21 | } |
| 22 | |
| 23 | /// <summary> |
| 24 | /// 行读取器 |
nothing calls this directly
no outgoing calls
no test coverage detected