1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SketchAssistantWPF
- {
- public class FileImporterException : Exception
- {
-
-
-
- String showMessage;
- public FileImporterException(String message, String hint, int lineNumber) : base(message)
- {
- showMessage = "Could not import file:\n\n" + message + (hint == null ? "" : "\n(Hint: " + hint + ")") + (lineNumber == -1 ? "" : "\n\n-line: " + lineNumber);
- }
- public override string ToString()
- {
- return showMessage;
- }
- }
- }
|