forked from GeoJSON-Net/GeoJSON.Net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParsingException.cs
More file actions
29 lines (27 loc) · 1.08 KB
/
ParsingException.cs
File metadata and controls
29 lines (27 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ParsingException.cs" company="Jörg Battermann">
// Copyright © Jörg Battermann 2011
// </copyright>
// <summary>
// Defines the ParsingException type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace GeoJSON.Net.Exceptions
{
using System;
/// <summary>
/// Exception raised when response from SimpleGeo API cannot be parsed
/// </summary>
public class ParsingException : ApplicationException
{
/// <summary>
/// Initializes a new instance of the <see cref="ParsingException"/> class.
/// </summary>
/// <param name="message">The message.</param>
/// <param name="innerException">The inner exception.</param>
public ParsingException(string message = "Could not parse GeoJSON Response.", Exception innerException = null)
: base(message, innerException)
{
}
}
}