using System; namespace GisSharpBlog.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) {} /// /// Creates a ParseException with es detail message. /// /// An exception that occurred while a WKTReader was /// parsing a Well-known Text string. public ParseException(Exception e) : this(e.ToString()) {} } }