using System; namespace Core.GIS.NetTopologySuite.IO { /// /// Thrown by a WKTReader when a parsing problem occurs. /// public class ParseException : ApplicationException { /// /// Creates a ParseException with the given detail message. /// /// A description of this ParseException. public ParseException(String message) : base(message) {} } }