aboutsummaryrefslogtreecommitdiff
path: root/SocketHttpListener.Portable/Primitives/HttpListenerException.cs
blob: 7b383fd2302602e68a60a22587931f929c230b47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace SocketHttpListener.Primitives
{
    public class HttpListenerException : Exception
    {
        public HttpListenerException(int statusCode, string message)
            : base(message)
        {
            
        }
    }
}