using System; namespace GisSharpBlog.NetTopologySuite.IO.GeoTools { /// /// The exception that is thrown when a non-fatal application error occurs related to Topology functionality. /// internal class ShapefileException : ApplicationException { /// /// Initializes a new instance of the ShapefileException class with a specified error message. /// /// A message that describes the error. public ShapefileException(string message) : base(message) {} } }