Showdan.Net
c# client for the shodan api
ShodanException.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Net.Http;
5 using System.Threading.Tasks;
6 
7 namespace Shodan.Net
8 {
9  public class ShodanException : Exception
10  {
11  public ShodanException()
12  {
13  }
14 
15  public ShodanException(string message) : base(message)
16  {
17  }
18 
19  public ShodanException(string message, Exception innerException) : base(message, innerException)
20  {
21  }
22  }
23 }