(int line, string message)
| 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> |
nothing calls this directly
no outgoing calls
no test coverage detected